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.

Changeset 1331


Ignore:
Timestamp:
2015-06-11T21:55:32-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

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

    r1201 r1331  
    2929
    3030(defpackage "GB-POSTPROCESSING"
    31   (:use :cl :monomial :division :polynomial)
     31  (:use :cl :monomial :division :polynomial :ring-and-order)
    3232  (:export "REDUCTION" "MINIMIZATION"))
    3333
    3434(in-package :gb-postprocessing)
    3535
    36 (defun reduction (ring plist)
     36(defun reduction (ring-and-order plist)
    3737  "Reduce a list of polynomials PLIST, so that non of the terms in any of
    3838the polynomials is divisible by a leading monomial of another
    3939polynomial.  Return the reduced list."
     40  (declare (type ring-and-order ring-and-order))
    4041  (do ((q plist)
    4142       (found t))
Note: See TracChangeset for help on using the changeset viewer.