#! /usr/bin/env python # def polygon_integrals_test ( ): #*****************************************************************************80 # ## POLYGON_INTEGRALS_TEST tests the POLYGON_INTEGRALS library. # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 23 June 2015 # # Author: # # John Burkardt # import platform from moment import moment_test from moment_central import moment_central_test from moment_normalized import moment_normalized_test from i4_uniform_ab import i4_uniform_ab_test from r8_choose import r8_choose_test from r8_mop import r8_mop_test print ( '' ) print ( 'POLYGON_INTEGRALS_TEST' ) print ( ' Python version: %s' % ( platform.python_version ( ) ) ) print ( ' Test the POLYGON_INTEGRALS library.' ) # # Utilities: # i4_uniform_ab_test ( ) r8_choose_test ( ) r8_mop_test ( ) # # Library functions: # moment_test ( ) moment_central_test ( ) moment_normalized_test ( ) # # Terminate. # print ( '' ) print ( 'POLYGON_INTEGRALS_TEST:' ) print ( ' Normal end of execution.' ) return if ( __name__ == '__main__' ): from timestamp import timestamp timestamp ( ) polygon_integrals_test ( ) timestamp ( )