#! /usr/bin/env python # def asa183_test ( ): #*****************************************************************************80 # ## ASA183_TEST tests the ASA183 library. # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 19 August 2015 # # Author: # # John Burkardt # import platform from r8_random import r8_random_test01 from r8_random import r8_random_test02 from r8_random import r8_random_test03 from r8_uni import r8_uni_test01 from r8_uni import r8_uni_test02 from r8_uni import r8_uni_test03 print ( '' ) print ( 'ASA183_TEST' ) print ( ' Python version: %s' % ( platform.python_version ( ) ) ) print ( ' Test the ASA183 library.' ) r8_random_test01 ( ) r8_random_test02 ( ) r8_random_test03 ( ) r8_uni_test01 ( ) r8_uni_test02 ( ) r8_uni_test03 ( ) # # Terminate. # print ( '' ) print ( 'ASA183_TEST:' ) print ( ' Normal end of execution.' ) if ( __name__ == '__main__' ): from timestamp import timestamp timestamp ( ) asa183_test ( ) timestamp ( )