close Warning: Can't synchronize with repository "(default)" (The repository directory has changed, you should resynchronize the repository with: trac-admin $ENV repository resync '(default)'). Look in the Trac log for more information.

Changeset 3250


Ignore:
Timestamp:
2015-06-22T20:38:24-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r3249 r3250  
    3838
    3939(defclass poly ()
    40   ((dimension :initarg :dimension :accessor poly-dimension
     40  ((dimension :initform 0
     41              :initarg :dimension
     42              :accessor poly-dimension
    4143              :documentation "Shared dimension of all terms, the number of variables")
    42    (termlist :initarg :termlist :accessor poly-termlist
     44   (termlist :initform nil :initarg :termlist :accessor poly-termlist
    4345             :documentation "List of terms.")
    44    (order :initarg :order :accessor poly-term-order
     46   (order :initform #'lex> :initarg :order :accessor poly-term-order
    4547          :documentation "Monomial/term order."))
    46   (:default-initargs :dimension nil :termlist nil :order #'lex>)
     48  (:default-initargs :dimension nil :termlist nil :order nil>)
    4749  (:documentation "A polynomial with a list of terms TERMLIST, ordered
    4850according to term order ORDER, which defaults to LEX>."))
Note: See TracChangeset for help on using the changeset viewer.