#! /usr/bin/env python # def toms097_test ( ): #*****************************************************************************80 # ## MAIN is the main program for TOMS097_PRB. # # Discussion: # # TOMS097_TEST tests the TOMS097 library. # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 28 January 2016 # # Author: # # John Burkardt # import platform print ( '' ) print ( 'TOMS097_TEST' ) print ( ' Python version: %s' % ( platform.python_version ( ) ) ) print ( ' Test the TOMS097 library.' ) from i4mat_shortest_path import i4mat_shortest_path_test from r8mat_shortest_path import r8mat_shortest_path_test i4mat_shortest_path_test ( ) r8mat_shortest_path_test ( ) # # Terminate. # print ( '' ) print ( 'TOMS097_TEST:' ) print ( ' Normal end of execution.' ) return if ( __name__ == '__main__' ): from timestamp import timestamp timestamp ( ) toms097_test ( ) timestamp ( )