Changeset fa8420 in git for factory/ftest/totaldegree.m4
- Timestamp:
- Apr 6, 1998, 12:50:46 PM (26 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 3ba84ce0237d1edda5eed542f689d3e795661cdb
- Parents:
- a42239a667454add16526617638435dcc1115d49
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/ftest/totaldegree.m4
ra42239 rfa8420 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: totaldegree.m4,v 1. 3 1997-11-05 16:12:21schmidt Exp $ */2 /* $Id: totaldegree.m4,v 1.4 1998-04-06 10:49:17 schmidt Exp $ */ 3 3 4 4 ftestSetNameOfGame( totaldegree, `" 5 5 Usage: totaldegree [<options>] [<envSpec>] <f> [<x> <y>] 6 calculates total degree of canonical form f. If the variables7 x and y are specified, calculates total degree of f with8 respect to the polynomial variables between x and y9 (inclusively).6 calculates total degree of canonical form <f>. If the 7 variables <x> and <y> are specified, calculates total 8 degree of <f> with respect to the polynomial variables 9 between <x> and <y> (inclusively). 10 10 "'`' ) 11 11 … … 48 48 49 49 // do the test! 50 ftestRun(51 if ( ftestArgGiven( x ) )52 result = totaldegree( f, x, y ); 53 else54 result = totaldegree( f ); ); 50 if ( ftestArgGiven( x ) ) { 51 ftestRun( result = totaldegree( f, x, y ); ); 52 } else { 53 ftestRun( result = totaldegree( f ); ); 54 } 55 55 56 56 // print results
Note: See TracChangeset
for help on using the changeset viewer.