- Timestamp:
- 2016-05-28T12:17:21-07:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/symbolic-polynomial.lisp
r3840 r3841 211 211 (:documentation "Render polynomial SELF as a string, using symbolic variables VARS.") 212 212 (:method :before ((self poly) &optional (vars nil)) 213 (assert (= (length vars) (poly-dimension self)))) 213 ;; Ensure that the number of variables matches the dimension 214 (assert (= (length vars) (poly-dimension self)))) 214 215 (:method ((self poly) &optional (vars nil)) 215 216 (infix-print (->infix self vars)))
Note:
See TracChangeset
for help on using the changeset viewer.