Changeset 3927 for branches/f4grobner
- Timestamp:
- 2016-05-29T23:04:29-07:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/pair-queue.lisp
r3926 r3927 52 52 first second)))) 53 53 54 (defun make-pair-queue (pair-key-fn pair-order-fn) 55 "Constructs a priority queue for critical pairs." 56 (make-priority-queue 57 :element-type 'critical-pair 58 :element-key #'(lambda (pair) (funcall pair-key-fn (critical-pair-first pair) (critical-pair-second pair))) 59 :test pair-order-fn)) 54 (defclass selection-strategy () 55 ((pair-key-fn :initform nil :initarg :pair-key-fn :accessor pair-key-fn) 56 (pair-order-fn :initform nil :initarg :pair-order-fn :accessor pair-order-fn)) 57 (:documentation "Sets up variables *PAIR-KEY-FUNCTION* and *PAIR-ORDER* used 58 to determine the priority of critical pairs in the priority queue.")) 59 60 (defclass critical-pair-queue (selection-strategy) 61 ((pq :initform (make-priority-queue 62 :element-type 'critical-pair 63 :element-key #'(lambda (pair) (funcall pair-key-fn (critical-pair-first pair) (critical-pair-second pair))) 64 :test pair-order-fn)))) 60 65 61 66 (defun pair-queue-initialize (pq f start … … 85 90 (priority-queue-empty-p b)) 86 91 87 (defclass selection-strategy ()88 ((pair-key-fn :initform nil :initarg :pair-key-fn :accessor pair-key-fn)89 (pair-order-fn :initform nil :initarg :pair-order-fn :accessor pair-order-fn))90 (:documentation "Sets up variables *PAIR-KEY-FUNCTION* and *PAIR-ORDER* used91 to determine the priority of critical pairs in the priority queue."))92 92 93 93 (defun make-normal-strategy (monomial-order-fn)
Note:
See TracChangeset
for help on using the changeset viewer.