- Timestamp:
- 2015-06-18T14:11:51-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/term.lisp
r2192 r2275 40 40 (defclass term (monom) 41 41 ((coeff :initarg :coeff :accessor term-coeff))) 42 43 (defmethod print-object ((self term) stream) 44 (format stream "#<TERM DIMENSION=~A EXPONENTS=~A COEFF=~A>" 45 (slot-value self 'dimension) 46 (slot-value self 'exponents) 47 (slot-value self 'coeff))) 48 42 49 43 50 (defun make-term (&key
Note:
See TracChangeset
for help on using the changeset viewer.