Changeset d2b2a7 in git for Singular/LIB/factor.lib


Ignore:
Timestamp:
May 5, 1998, 1:55:40 PM (26 years ago)
Author:
Kai Krüger <krueger@…>
Branches:
(u'spielwiese', 'a719bcf0b8dbc648b128303a49777a094b57592c')
Children:
97f92aa6d280f6022eaae47195ccc02503ccb984
Parents:
4996f5286c7671191ad22e654499fd8b752fe4f0
Message:
Modified Files:
	libparse.l utils.cc LIB/classify.lib LIB/deform.lib
	LIB/elim.lib LIB/factor.lib LIB/fastsolv.lib LIB/finvar.lib
	LIB/general.lib LIB/hnoether.lib LIB/homolog.lib LIB/inout.lib
	LIB/invar.lib LIB/makedbm.lib LIB/matrix.lib LIB/normal.lib
	LIB/poly.lib LIB/presolve.lib LIB/primdec.lib LIB/primitiv.lib
	LIB/random.lib LIB/ring.lib LIB/sing.lib LIB/standard.lib
	LIB/tex.lib LIB/tst.lib
Changed help section o procedures to have an quoted help-string between
proc-definition and proc-body.


git-svn-id: file:///usr/local/Singular/svn/trunk@1601 2c84dea3-7e68-4137-9b89-c4e89433aadc
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:01 krueger Exp $
     1// $Id: factor.lib,v 1.5 1998-05-05 11:55:23 krueger Exp $
    22//(RS)
    33///////////////////////////////////////////////////////////////////////////////
    44
    5 version="$Id: factor.lib,v 1.4 1998-04-03 22:47:01 krueger Exp $";
     5version="$Id: factor.lib,v 1.5 1998-05-05 11:55:23 krueger Exp $";
    66info="
    77LIBRARY:  factor.lib    PROCEDURES FOR CALLING THE REDUCE FACTORIZER
     
    1414
    1515proc delete_dollar ( string s )
    16 USAGE:   delete_dollar(s);  s = string
     16"USAGE:   delete_dollar(s);  s = string
    1717RETURN:  string, with '$' replaced by ' '
    1818EXAMPLE: example delete_dollar; shows an example
     19"
    1920{
    2021   while( s[size(s)]=="$" and size(s)!=1 ) { s=s[1,size(s)-1]; }
     
    3839
    3940proc reduce_factor ( poly f )
    40 USAGE:   reduce_factor(f);  f = poly
     41"USAGE:   reduce_factor(f);  f = poly
    4142RETURN:  list, the factors of f
    4243NOTE:    due to a limitation of REDUCE, multivariate polynomials can only
     
    4445             This proc runs under UNIX only
    4546EXAMPLE: example reduce_factor; shows an example
     47"
    4648{
    4749  string pid = string( system( "pid" ) );
Note: See TracChangeset for help on using the changeset viewer.