program main c*********************************************************************72 c cc cube_felippa_rule_test() tests cube_felippa_rule(). c c Licensing: c c This code is distributed under the MIT license. c c Modified: c c 04 September 2014 c c Author: c c John Burkardt c implicit none integer degree_max call timestamp ( ) write ( *, '(a)' ) ' ' write ( *, '(a)' ) 'cube_felippa_rule_test():' write ( *, '(a)' ) ' FORTRAN77 version' write ( *, '(a)' ) ' Test cube_felippa_rule().' degree_max = 4 call cube_monomial_test ( degree_max ) degree_max = 6 call cube_quad_test ( degree_max ) c c Terminate. c write ( *, '(a)' ) ' ' write ( *, '(a)' ) 'cube_felippa_rule_test():' write ( *, '(a)' ) ' Normal end of execution.' write ( *, '(a)' ) ' ' call timestamp ( ) stop end