Changeset 2525 for branches/f4grobner
- Timestamp:
- 2015-06-19T13:35:33-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r2522 r2525 65 65 (defgeneric leading-term (object) 66 66 (:method ((self poly)) 67 (car (poly-termlist self)))) 67 (car (poly-termlist self))) 68 (:documentation "The leading term of a polynomial, or NIL for zero polynomial.")) 68 69 69 70 ;; Second term 70 71 (defgeneric second-leading-term (object) 71 72 (:method ((self poly)) 72 (cadar (poly-termlist self)))) 73 (cadar (poly-termlist self))) 74 (:documentation "The second leading term of a polynomial, or NIL for a polynomial with at most one term.")) 73 75 74 76 ;; Leading coefficient
Note:
See TracChangeset
for help on using the changeset viewer.