Changeset fa8420 in git for factory/ftest/size.m4


Ignore:
Timestamp:
Apr 6, 1998, 12:50:46 PM (26 years ago)
Author:
Jens Schmidt <schmidt@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
3ba84ce0237d1edda5eed542f689d3e795661cdb
Parents:
a42239a667454add16526617638435dcc1115d49
Message:
***** merge from branch `factory-gcd' to main trunk


git-svn-id: file:///usr/local/Singular/svn/trunk@1328 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/ftest/size.m4

    ra42239 rfa8420  
    11/* emacs edit mode for this file is -*- C++ -*- */
    2 /* $Id: size.m4,v 1.3 1997-11-05 16:12:18 schmidt Exp $ */
     2/* $Id: size.m4,v 1.4 1998-04-06 10:49:03 schmidt Exp $ */
    33
    44ftestSetNameOfGame( size, `"
    55Usage: size [<options>] [<envSpec>] <f> [<x>]
    6   calculates number of monomials of canonical form f.  If
    7   variable x is specified, calculates number of monomials of f
    8   with level higher or equal than level of x.
     6  calculates number of monomials of canonical form <f>.  If
     7  variable <x> is specified, calculates number of monomials of
     8  <f> with level higher or equal than level of <x>.
    99"'`' )
    1010
     
    4545
    4646    // do the test!
    47     ftestRun(
    48         if ( ftestArgGiven( x ) )
    49             result = size( f, x );
    50         else
    51             result = size( f ); );
     47    if ( ftestArgGiven( x ) ) {
     48        ftestRun( result = size( f, x ); );
     49    } else {
     50        ftestRun( result = size( f ); );
     51    }
    5252
    5353    // print results
Note: See TracChangeset for help on using the changeset viewer.