#! /usr/bin/env python # def triangle_interpolate_test ( ): #*****************************************************************************80 # ## TRIANGLE_INTERPOLATE_TEST tests the TRIANGLE_INTERPOLATE library. # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 19 January 2016 # # Author: # # John Burkardt # import platform from r8mat_print import r8mat_print_test from r8mat_print_some import r8mat_print_some_test from r8mat_transpose_write import r8mat_transpose_write_test from r8vec_print import r8vec_print_test from r8vec_uniform_01 import r8vec_uniform_01_test from triangle_interpolate_linear import triangle_interpolate_linear_test from uniform_in_triangle_map1 import uniform_in_triangle_map1_test print ( '' ) print ( 'TRIANGLE_INTERPOLATE_TEST' ) print ( ' Python version: %s' % ( platform.python_version ( ) ) ) print ( ' Test the TRIANGLE_INTERPOLATE library.' ) r8mat_print_test ( ) r8mat_print_some_test ( ) r8mat_transpose_write_test ( ) r8vec_print_test ( ) r8vec_uniform_01_test ( ) triangle_interpolate_linear_test ( ) uniform_in_triangle_map1_test ( ) # # Terminate. # print ( '' ) print ( 'TRIANGLE_INTERPOLATE_TEST:' ) print ( ' Normal end of execution.' ) return if ( __name__ == '__main__' ): from timestamp import timestamp timestamp ( ) triangle_interpolate_test ( ) timestamp ( )