program main !*****************************************************************************80 ! !! MAIN is the main program for SQUARE_FELIPPA_RULE_TEST. ! ! Discussion: ! ! SQUARE_FELIPPA_RULE_TEST tests the SQUARE_FELIPPA_RULE library. ! ! Licensing: ! ! This code is distributed under the GNU LGPL license. ! ! Modified: ! ! 05 September 2014 ! ! Author: ! ! John Burkardt ! implicit none integer ( kind = 4 ) degree_max call timestamp ( ) write ( *, '(a)' ) ' ' write ( *, '(a)' ) 'SQUARE_FELIPPA_RULE_TEST' write ( *, '(a)' ) ' FORTRAN90 version' write ( *, '(a)' ) ' Test the SQUARE_FELIPPA_RULE library.' degree_max = 4 call square_monomial_test ( degree_max ) degree_max = 5 call square_quad_test ( degree_max ) ! ! Terminate. ! write ( *, '(a)' ) ' ' write ( *, '(a)' ) 'SQUARE_FELIPPA_RULE_TEST' write ( *, '(a)' ) ' Normal end of execution.' write ( *, '(a)' ) ' ' call timestamp ( ) stop 0 end