#! /usr/bin/env python # def toms515_test ( ): #*****************************************************************************80 # ## TOMS515_TEST tests the TOMS515 library. # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 31 March 2016 # # Author: # # John Burkardt # import platform from comb import comb_test01 from comb import comb_test02 from comb import comb_test03 from comb import comb_test04 from comb import comb_test05 from i4_choose import i4_choose_test from i4_choose_check import i4_choose_check_test from i4_uniform_ab import i4_uniform_ab_test from r8_gamma_log import r8_gamma_log_test print ( '' ) print ( 'TOMS515_TEST' ) print ( ' Python version: %s' % ( platform.python_version ( ) ) ) print ( ' Test the TOMS515 library.' ) comb_test01 ( ) comb_test02 ( ) comb_test03 ( ) comb_test04 ( ) comb_test05 ( ) i4_choose_test ( ) i4_choose_check_test ( ) i4_uniform_ab_test ( ) r8_gamma_log_test ( ) # # Terminate. # print ( '' ) print ( 'TOMS515_TEST:' ) print ( ' Normal end of execution.' ) return if ( __name__ == '__main__' ): from timestamp import timestamp timestamp ( ) toms515_test ( ) timestamp ( )