- Timestamp:
- 2015-06-20T16:33:24-07:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r2696 r2697 32 32 33 33 (defclass poly () 34 ((termlist :initarg :termlist :accessor poly-termlist) 35 (order :initarg :order :accessor poly-term-order)) 34 ((termlist :initarg :termlist :accessor poly-termlist 35 :documentation "List of terms.") 36 (order :initarg :order :accessor poly-term-order 37 :documentation "Monomial/term order.")) 36 38 (:default-initargs :termlist nil :order #'lex>) 37 39 (:documentation "A polynomial with a list of terms TERMLIST, ordered
Note:
See TracChangeset
for help on using the changeset viewer.