close Warning: Can't synchronize with repository "(default)" (The repository directory has changed, you should resynchronize the repository with: trac-admin $ENV repository resync '(default)'). Look in the Trac log for more information.

Ignore:
Timestamp:
2015-06-11T22:29:19-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/gb-postprocessing.lisp

    r1357 r1358  
    5959            (return)))))))
    6060
    61 (defun minimization (p)
     61(defun minimization (plist)
    6262  "Returns a sublist of the polynomial list P spanning the same
    6363monomial ideal as P but minimal, i.e. no leading monomial
    6464of a polynomial in the sublist divides the leading monomial
    6565of another polynomial."
    66   (do ((q p)
     66  (do ((q plist)
    6767       (found t))
    6868      ((not found) q)
    69     (declare (type poly q))
    7069    ;;1) Find p in Q such that lm(p) is in LM(Q\{p})
    7170    ;;2) Set Q <- Q\{p}
Note: See TracChangeset for help on using the changeset viewer.