Changeset 2445 for branches/f4grobner
- Timestamp:
- 2015-06-19T09:54:55-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r2442 r2445 127 127 128 128 ;; Testing for a zero polynomial 129 (defun poly-zerop (p) 130 (declare (type poly p)) 131 (null (poly-termlist p))) 129 (defmethod r-zerop ((self poly)) 130 (null (poly-termlist self))) 132 131 133 132 ;; The number of terms 134 (defun poly-length (p) 135 (declare (type poly p)) 136 (length (poly-termlist p))) 133 (defmethod r-length ((self poly)) 134 (length (poly-termlist self))) 137 135 138 136 (defun poly-reset-sugar (p)
Note:
See TracChangeset
for help on using the changeset viewer.