#! /usr/bin/env python # def asa103_test ( ): #*****************************************************************************80 # ## ASA103_TEST tests the ASA103 library. # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 17 March 2017 # # Author: # # John Burkardt # import platform from digamma import digamma_test from psi_values import psi_values_test print ( '' ) print ( 'ASA103_TEST' ) print ( ' Python version: %s' % ( platform.python_version ( ) ) ) print ( ' Test the ASA103 library.' ) digamma_test ( ) psi_values_test ( ) # # Terminate. # print ( '' ) print ( 'ASA103_TEST:' ) print ( ' Normal end of execution.' ) return if ( __name__ == '__main__' ): from timestamp import timestamp timestamp ( ) asa103_test ( ) timestamp ( )