# include # include # include # include # include "owen.hpp" using namespace std; int main ( ); //****************************************************************************80 int main ( ) //****************************************************************************80 // // Purpose: // // MAIN is the main program for owen_test. // // Discussion: // // owen_test tests the owen library. // // Licensing: // // This code is distributed under the MIT license. // // Modified: // // 14 July 2017 // // Author: // // John Burkardt // { timestamp ( ); cout << "\n"; cout << "owen_test:\n"; cout << " C++ version\n"; cout << " Test the owen library.\n"; bivnor_test ( ); t_test ( ); znorm1_test ( ); znorm2_test ( ); // // Terminate. // cout << "\n"; cout << "owen_test:\n"; cout << " Normal end of execution.\n"; cout << "\n"; timestamp ( ); return 0; }