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 1284


Ignore:
Timestamp:
2015-06-11T20:22:15-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/division.lisp

    r1280 r1284  
    152152      )))
    153153
    154 (defun poly-exact-divide (ring f g)
     154(defun poly-exact-divide (ring-and-order f g)
    155155  "Divide a polynomial F by another polynomial G. Assume that exact division
    156156with no remainder is possible. Returns the quotient."
    157   (declare (type poly f g))
     157  (declare (type poly f g) (type ring-and-order ring-and-order))
    158158  (multiple-value-bind (quot rem coeff division-count)
    159       (poly-pseudo-divide ring f (list g))
     159      (poly-pseudo-divide ring-and-order f (list g))
    160160    (declare (ignore division-count coeff)
    161161             (list quot)
Note: See TracChangeset for help on using the changeset viewer.