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


Ignore:
Timestamp:
May 5, 1998, 1:55:40 PM (26 years ago)
Author:
Kai Krüger <krueger@…>
Branches:
(u'spielwiese', 'ec94ef7a30b928574c0c3daf41f6804dff5f6b69')
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/fastsolv.lib

    r4996f52 rd2b2a7  
    11//
    2 version="$Id: fastsolv.lib,v 1.2 1998-04-03 22:47:01 krueger Exp $";
     2version="$Id: fastsolv.lib,v 1.3 1998-05-05 11:55:24 krueger Exp $";
    33info="";
    44
     
    99
    1010proc Tsimplify
    11 USAGE:    simplify(id,n);  id ideal, n integer
     11"USAGE:    simplify(id,n);  id ideal, n integer
    1212RETURNS:  list of two ideals the first containing the simplified
    1313          elements, the second the variables which already have
     
    1616          n+1,... is not supported
    1717EXAMPLE:  example simplify; shows an example
    18 
     18"
    1919{
    2020  def bsr=basering;
     
    8888
    8989proc simplifyInBadRings
    90 USAGE:    simplify(id,n);  id ideal, n product of the variables
     90"USAGE:    simplify(id,n);  id ideal, n product of the variables
    9191          to be eliminated later
    9292RETURNS:  list of two ideals the first containing the simplified
     
    9494          been eliminated
    9595EXAMPLE:  example simplify; shows an example
    96 
     96"
    9797{
    9898  int @i,@j;
     
    144144
    145145proc fastElim
    146 USAGE:    fastelim(id,v);  id ideal, v Product of variables to
     146"USAGE:    fastelim(id,v);  id ideal, v Product of variables to
    147147          be eliminated.
    148148RETURNS:  list of two ideals the first containing the simplified
     
    150150          been eliminated
    151151EXAMPLE:  example fastElim; shows an example.
    152 {
     152"{
    153153   string @oldgnir = nameof(basering);  // Namen des alten Baserings merken
    154154   string @varnames;
     
    275275
    276276proc valvars
    277 
     277"
    278278USAGE:    valvars(id, [n1, [m, [n2]]]); id (poly|ideal|vector|module);
    279279                                        m monom; n1,n2 int
     
    289289          contains more monomials than that of y.
    290290EXAMPLE:  example valvars; shows an example
    291 
     291"
    292292{
    293293  int     @order1, @order2,     // order of vars not to elim resp. to elim
Note: See TracChangeset for help on using the changeset viewer.