- Timestamp:
- 2016-06-03T19:09:15-07:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/pair-queue.lisp
r4189 r4190 41 41 (defclass critical-pair () 42 42 ((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 46 polynomials. The derived classes may add extra data used in computing 47 the order of critical pairs.")) 46 48 47 49 (defmethod print-object ((self critical-pair) stream)
Note:
See TracChangeset
for help on using the changeset viewer.