# include # include # include # include using namespace std; # include "line_felippa_rule.hpp" int main ( ); //****************************************************************************80 int main ( ) //****************************************************************************80 // // Purpose: // // MAIN is the main program for LINE_FELIPPA_RULE_TEST. // // Discussion: // // LINE_FELIPPA_RULE_TEST tests the LINE_FELIPPA_RULE library. // // Licensing: // // This code is distributed under the MIT license. // // Modified: // // 07 September 2014 // // Author: // // John Burkardt // { int degree_max; timestamp ( ); cout << "\n"; cout << "LINE_FELIPPA_RULE_TEST\n"; cout << " C++ version\n"; cout << " Test the LINE_FELIPPA_RULE library.\n"; degree_max = 4; line_monomial_test ( degree_max ); degree_max = 10; line_quad_test ( degree_max ); // // Terminate. // cout << "\n"; cout << "LINE_FELIPPA_RULE_TEST\n"; cout << " Normal end of execution.\n"; cout << "\n"; timestamp ( ); return 0; }