# include # include # include # include "owens.h" int main ( ); /******************************************************************************/ int main ( ) /******************************************************************************/ /* Purpose: MAIN is the main program for OWENS_TEST. Discussion: OWENS_TEST tests the OWENS library. Licensing: This code is distributed under the GNU LGPL license. Modified: 14 July 2017 Author: John Burkardt */ { timestamp ( ); printf ( "\n" ); printf ( "OWENS_TEST:\n" ); printf ( " C version\n" ); printf ( " Test the OWENS library.\n" ); bivnor_test ( ); t_test ( ); znorm1_test ( ); znorm2_test ( ); /* Terminate. */ printf ( "\n" ); printf ( "OWENS_TEST:\n" ); printf ( " Normal end of execution.\n" ); printf ( "\n" ); timestamp ( ); return 0; }