Changeset 3245 for branches/f4grobner
- Timestamp:
- 2015-06-22T20:31:47-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r3244 r3245 87 87 88 88 (defmethod insert-item ((self poly) (item term)) 89 (assert (= (monom-dimension item) (poly-dimension self))) 89 90 (push item (poly-termlist self)) 90 91 self) 91 92 92 93 (defmethod append-item ((self poly) (item term)) 94 (assert (= (monom-dimension item) (poly-dimension self))) 93 95 (setf (cdr (last (poly-termlist self))) (list item)) 94 96 self)
Note:
See TracChangeset
for help on using the changeset viewer.