Changeset 3677 for branches/f4grobner
- Timestamp:
- 2015-09-06T05:28:30-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r3676 r3677 438 438 (defgeneric poly-content (object) 439 439 (:documentation "Greatest common divisor of the coefficients of the polynomial object OBJECT.") 440 (reduce #'universal-gcd (mapcar #'term-coeff (rest (poly-termlist p))) :initial-value (leading-coefficient p))) 440 (:method ((self poly)) 441 (reduce #'universal-gcd 442 (mapcar #'term-coeff (rest (poly-termlist p))) 443 :initial-value (leading-coefficient p)))) 441 444 442 445 #|
Note:
See TracChangeset
for help on using the changeset viewer.