- Timestamp:
- 2015-06-22T20:39:51-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r3252 r3253 38 38 39 39 (defclass poly () 40 ((dimension :initform 040 ((dimension :initform nil 41 41 :initarg :dimension 42 42 :accessor poly-dimension … … 46 46 (order :initform #'lex> :initarg :order :accessor poly-term-order 47 47 :documentation "Monomial/term order.")) 48 (:default-initargs :dimension 0:termlist nil :order nil)48 (:default-initargs :dimension nil :termlist nil :order nil) 49 49 (:documentation "A polynomial with a list of terms TERMLIST, ordered 50 50 according to term order ORDER, which defaults to LEX>."))
Note:
See TracChangeset
for help on using the changeset viewer.