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 4190


Ignore:
Timestamp:
2016-06-03T19:09:15-07:00 (8 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/pair-queue.lisp

    r4189 r4190  
    4141(defclass critical-pair ()
    4242  ((first :initform nil  :initarg :first :accessor critical-pair-first :type poly)
    43    (second :initform nil :initarg :second :accessor critical-pair-second :type poly))
    44   (:documentation "Represents a critical pair, i.e. a pair of two polynomials. The derived
    45 classes may add extra data used in computing the order of critical pairs."))
     43   (second :initform nil :initarg :second :accessor critical-pair-second :type poly)
     44   (data :initform nil :accessor critical-pair-division-data))
     45  (:documentation "Represents a critical pair, i.e. a pair of two
     46polynomials. The derived classes may add extra data used in computing
     47the order of critical pairs."))
    4648
    4749(defmethod print-object ((self critical-pair) stream)
Note: See TracChangeset for help on using the changeset viewer.