Changeset 3931 for branches/f4grobner
- Timestamp:
- 2016-05-29T23:10:22-07:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/pair-queue.lisp
r3930 r3931 56 56 ((pair-key-fn :initform nil :initarg :pair-key-fn :accessor pair-key-fn) 57 57 (pair-order-fn :initform nil :initarg :pair-order-fn :accessor pair-order-fn)) 58 (:documentation "Sets up variables *PAIR-KEY-FUNCTION* and *PAIR-ORDER* used 59 to determine the priority of critical pairs in the priority queue.")) 58 (:documentation "Represents a critical pair selection strategy. The 59 two ingredients of a strategy is a function PAIR-KEY-FUNCTION which 60 computes a key from the critical pair, which can be any type of data, 61 and a function PAIR-ORDER-FN used to compaire the calculated keys to 62 determine which pair is more promising and should be considered first.")) 60 63 61 64 (defclass critical-pair-queue (selection-strategy)
Note:
See TracChangeset
for help on using the changeset viewer.