Changeset d2b2a7 in git for Singular/LIB/fastsolv.lib
- Timestamp:
- May 5, 1998, 1:55:40 PM (26 years ago)
- Branches:
- (u'spielwiese', 'ec94ef7a30b928574c0c3daf41f6804dff5f6b69')
- Children:
- 97f92aa6d280f6022eaae47195ccc02503ccb984
- Parents:
- 4996f5286c7671191ad22e654499fd8b752fe4f0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/fastsolv.lib
r4996f52 rd2b2a7 1 1 // 2 version="$Id: fastsolv.lib,v 1. 2 1998-04-03 22:47:01krueger Exp $";2 version="$Id: fastsolv.lib,v 1.3 1998-05-05 11:55:24 krueger Exp $"; 3 3 info=""; 4 4 … … 9 9 10 10 proc Tsimplify 11 USAGE: simplify(id,n); id ideal, n integer11 "USAGE: simplify(id,n); id ideal, n integer 12 12 RETURNS: list of two ideals the first containing the simplified 13 13 elements, the second the variables which already have … … 16 16 n+1,... is not supported 17 17 EXAMPLE: example simplify; shows an example 18 18 " 19 19 { 20 20 def bsr=basering; … … 88 88 89 89 proc simplifyInBadRings 90 USAGE: simplify(id,n); id ideal, n product of the variables90 "USAGE: simplify(id,n); id ideal, n product of the variables 91 91 to be eliminated later 92 92 RETURNS: list of two ideals the first containing the simplified … … 94 94 been eliminated 95 95 EXAMPLE: example simplify; shows an example 96 96 " 97 97 { 98 98 int @i,@j; … … 144 144 145 145 proc fastElim 146 USAGE: fastelim(id,v); id ideal, v Product of variables to146 "USAGE: fastelim(id,v); id ideal, v Product of variables to 147 147 be eliminated. 148 148 RETURNS: list of two ideals the first containing the simplified … … 150 150 been eliminated 151 151 EXAMPLE: example fastElim; shows an example. 152 {152 "{ 153 153 string @oldgnir = nameof(basering); // Namen des alten Baserings merken 154 154 string @varnames; … … 275 275 276 276 proc valvars 277 277 " 278 278 USAGE: valvars(id, [n1, [m, [n2]]]); id (poly|ideal|vector|module); 279 279 m monom; n1,n2 int … … 289 289 contains more monomials than that of y. 290 290 EXAMPLE: example valvars; shows an example 291 291 " 292 292 { 293 293 int @order1, @order2, // order of vars not to elim resp. to elim
Note: See TracChangeset
for help on using the changeset viewer.