- Timestamp:
- 2015-09-05T15:13:02-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r3527 r3528 148 148 (:documentation "The leading coefficient of a polynomial. It signals error for a zero polynomial.")) 149 149 150 ;; Second coefficient 150 ;; Leading monomial 151 (defgeneric poly-leading-monomial (object) 152 (:method ((self poly)) 153 (car (poly-leading-term self))) 154 (:documentation "The leading monomial of a polynomial. It signals error for a zero polynomial.")) 155 156 ;; Second leading coefficient 151 157 (defgeneric second-leading-coefficient (object) 152 158 (:method ((self poly)) 153 159 (cdr (poly-second-leading-term self))) 154 160 (:documentation "The second leading coefficient of a polynomial. It 161 signals error for a polynomial with at most one term.")) 162 163 ;; Second leading coefficient 164 (defgeneric second-leading-monomial (object) 165 (:method ((self poly)) 166 (car (poly-second-leading-term self))) 167 (:documentation "The second leading monomial of a polynomial. It 155 168 signals error for a polynomial with at most one term.")) 156 169
Note:
See TracChangeset
for help on using the changeset viewer.