# include # include # include # include "cube_felippa_rule.h" int main ( ); /******************************************************************************/ int main ( ) /******************************************************************************/ /* Purpose: MAIN is the main program for CUBE_FELIPPA_RULE_TEST. Discussion: CUBE_FELIPPA_RULE_TEST tests the CUBE_FELIPPA_RULE library. Licensing: This code is distributed under the MIT license. Modified: 05 September 2014 Author: John Burkardt */ { int degree_max; timestamp ( ); printf ( "\n" ); printf ( "CUBE_FELIPPA_RULE_TEST\n" ); printf ( " C version\n" ); printf ( " Test the CUBE_FELIPPA_RULE library.\n" ); degree_max = 4; cube_monomial_test ( degree_max ); degree_max = 6; cube_quad_test ( degree_max ); /* Terminate. */ printf ( "\n" ); printf ( "CUBE_FELIPPA_RULE_TEST\n" ); printf ( " Normal end of execution.\n" ); printf ( "\n" ); timestamp ( ); return 0; }