Changeset 4510 for branches/f4grobner/polynomial-sugar.lisp
- Timestamp:
- 2016-06-17T11:23:56-07:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial-sugar.lisp
r4509 r4510 40 40 (format stream "EXPONENTS=~A COEFF=~A SUGAR=~A" 41 41 exponents coeff value)))) 42 43 (defclass poly-with-sugar (poly sugar) ()) 44 45 (defmethod shared-initialize :after ((self poly-with-sugar) slot-names &rest initargs &key) 46 "Initialize sugar to its static value." 47 (declare (ignore slot-names initargs)) 48 (setf (slot-value self 'value) (static-sugar self)))
Note:
See TracChangeset
for help on using the changeset viewer.