#! /usr/bin/env python # def asa063_test ( ): #*****************************************************************************80 # ## ASA063_TEST tests the ASA063 library. # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 23 December 2015 # # Author: # # John Burkardt # import platform from alogam import alogam_test from beta_inc_values import beta_inc_values_test from betain import betain_test from gamma_log_values import gamma_log_values_test print ( '' ) print ( 'ASA063_TEST' ) print ( ' Python version: %s' % ( platform.python_version ( ) ) ) print ( ' Test the ASA063 library.' ) alogam_test ( ) beta_inc_values_test ( ) betain_test ( ) gamma_log_values_test ( ) # # Terminate. # print ( '' ) print ( 'ASA063_TEST:' ) print ( ' Normal end of execution.' ) return if ( __name__ == '__main__' ): from timestamp import timestamp timestamp ( ) asa063_test ( ) timestamp ( )