#! /usr/bin/env python # def toms577_test ( ): #*****************************************************************************80 # ## TOMS577_TEST tests TOMS577. # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 01 June 2018 # # Author: # # Original FORTRAN77 version by Bille Carlson, Elaine Notis. # This Python version by John Burkardt. # import platform from rc import rc_test from rc import rc_test2 from rd import rd_test from rf import rf_test from rj import rj_test print ( '' ) print ( 'TOMS577_TEST' ) print ( ' Python version: %s' % ( platform.python_version ( ) ) ) print ( ' TOMS577 evaluates Carlsons elliptic functions.' ) rc_test ( ) rc_test2 ( ) rd_test ( ) rf_test ( ) rj_test ( ) # # Terminate. # print ( '' ) print ( 'TOMS577_TEST' ) print ( ' Normal end of execution.' ) return if ( __name__ == '__main__' ): from timestamp import timestamp timestamp ( ) toms577_test ( ) timestamp ( )