#! /usr/bin/env python # def linpack_d_test ( ): #*****************************************************************************80 # ## LINPACK_D_TEST tests the LINPACK_D library. # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 03 September 2018 # # Author: # # John Burkardt # import platform from dpofa import dpofa_test from dqrdc import dqrdc_test from dqrsl import dqrsl_test from dsvdc import dsvdc_test print ( '' ) print ( 'LINPACK_D_TEST' ) print ( ' Python version: %s' % ( platform.python_version ( ) ) ) print ( ' Test the LINPACK_D library.' ) dpofa_test ( ) dqrdc_test ( ) dqrsl_test ( ) dsvdc_test ( ) # # Terminate. # print ( '' ) print ( 'LINPACK_D_TEST' ) print ( ' Normal end of execution.' ) return if ( __name__ == '__main__' ): from timestamp import timestamp timestamp ( ) linpack_d_test ( ) timestamp ( )