- Timestamp:
- 2015-06-11T22:29:19-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/gb-postprocessing.lisp
r1357 r1358 59 59 (return))))))) 60 60 61 (defun minimization (p )61 (defun minimization (plist) 62 62 "Returns a sublist of the polynomial list P spanning the same 63 63 monomial ideal as P but minimal, i.e. no leading monomial 64 64 of a polynomial in the sublist divides the leading monomial 65 65 of another polynomial." 66 (do ((q p )66 (do ((q plist) 67 67 (found t)) 68 68 ((not found) q) 69 (declare (type poly q))70 69 ;;1) Find p in Q such that lm(p) is in LM(Q\{p}) 71 70 ;;2) Set Q <- Q\{p}
Note:
See TracChangeset
for help on using the changeset viewer.