Changeset d2b2a7 in git for Singular/LIB/factor.lib
- Timestamp:
- May 5, 1998, 1:55:40 PM (26 years ago)
- Branches:
- (u'spielwiese', 'a719bcf0b8dbc648b128303a49777a094b57592c')
- Children:
- 97f92aa6d280f6022eaae47195ccc02503ccb984
- Parents:
- 4996f5286c7671191ad22e654499fd8b752fe4f0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/factor.lib
r4996f52 rd2b2a7 1 // $Id: factor.lib,v 1. 4 1998-04-03 22:47:01krueger Exp $1 // $Id: factor.lib,v 1.5 1998-05-05 11:55:23 krueger Exp $ 2 2 //(RS) 3 3 /////////////////////////////////////////////////////////////////////////////// 4 4 5 version="$Id: factor.lib,v 1. 4 1998-04-03 22:47:01krueger Exp $";5 version="$Id: factor.lib,v 1.5 1998-05-05 11:55:23 krueger Exp $"; 6 6 info=" 7 7 LIBRARY: factor.lib PROCEDURES FOR CALLING THE REDUCE FACTORIZER … … 14 14 15 15 proc delete_dollar ( string s ) 16 USAGE: delete_dollar(s); s = string16 "USAGE: delete_dollar(s); s = string 17 17 RETURN: string, with '$' replaced by ' ' 18 18 EXAMPLE: example delete_dollar; shows an example 19 " 19 20 { 20 21 while( s[size(s)]=="$" and size(s)!=1 ) { s=s[1,size(s)-1]; } … … 38 39 39 40 proc reduce_factor ( poly f ) 40 USAGE: reduce_factor(f); f = poly41 "USAGE: reduce_factor(f); f = poly 41 42 RETURN: list, the factors of f 42 43 NOTE: due to a limitation of REDUCE, multivariate polynomials can only … … 44 45 This proc runs under UNIX only 45 46 EXAMPLE: example reduce_factor; shows an example 47 " 46 48 { 47 49 string pid = string( system( "pid" ) );
Note: See TracChangeset
for help on using the changeset viewer.