Changeset 3250 for branches/f4grobner
- Timestamp:
- 2015-06-22T20:38:24-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r3249 r3250 38 38 39 39 (defclass poly () 40 ((dimension :initarg :dimension :accessor poly-dimension 40 ((dimension :initform 0 41 :initarg :dimension 42 :accessor poly-dimension 41 43 :documentation "Shared dimension of all terms, the number of variables") 42 (termlist :init arg :termlist :accessor poly-termlist44 (termlist :initform nil :initarg :termlist :accessor poly-termlist 43 45 :documentation "List of terms.") 44 (order :init arg :order :accessor poly-term-order46 (order :initform #'lex> :initarg :order :accessor poly-term-order 45 47 :documentation "Monomial/term order.")) 46 (:default-initargs :dimension nil :termlist nil :order #'lex>)48 (:default-initargs :dimension nil :termlist nil :order nil>) 47 49 (:documentation "A polynomial with a list of terms TERMLIST, ordered 48 50 according to term order ORDER, which defaults to LEX>."))
Note:
See TracChangeset
for help on using the changeset viewer.