- Timestamp:
- 2015-06-19T14:17:18-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r2526 r2527 78 78 (:method ((self poly)) 79 79 (r-coeff (leading-term self))) 80 (:documentation "The leading coefficient of a polynomial. It signals error for a zero polynomial.") 80 (:documentation "The leading coefficient of a polynomial. It signals 81 error for a zero polynomial.") 81 82 82 83 ;; Second coefficient … … 84 85 (:method ((self poly)) 85 86 (r-coeff (second-leading-term self))) 86 (:documentation "The second leading coefficient of a polynomial. It signals error for a polynomial with at most one term.")) 87 (:documentation "The second leading coefficient of a polynomial. It 88 signals error for a polynomial with at most one term.")) 87 89 88 90 ;; Testing for a zero polynomial
Note:
See TracChangeset
for help on using the changeset viewer.