Changeset 3778 for branches/f4grobner
- Timestamp:
- 2016-05-27T19:16:36-07:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r3750 r3778 52 52 "SATURATION-EXTENSION-1" 53 53 "MAKE-POLY-VARIABLE" 54 "UNIVERSAL-EXPT") 54 "UNIVERSAL-EXPT" 55 "POLY-P") 55 56 (:documentation "Implements polynomials. A polynomial is essentially 56 57 a mapping of monomials of the same degree to coefficients. The … … 504 505 (p 1 (if (not (zerop (logand k y))) (multiply p q) p))) 505 506 ((> k y) p) 506 (declare (fixnum k))))))) 507 (declare (fixnum k))))))) 508 509 (defgeneric poly-p (object) 510 (:documentation "Checks if an object is a polynomial.") 511 (:method ((self poly)) true) 512 (:method ((self t)) nil))
Note:
See TracChangeset
for help on using the changeset viewer.