- Timestamp:
- 2016-05-29T21:40:50-07:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/pair-queue.lisp
r3918 r3919 26 26 "PAIR-FIRST" 27 27 "PAIR-SECOND" 28 "PAIR-SUGAR"29 28 "PAIR-DIVISION-DATA" 30 29 "*PAIR-KEY-FUNCTION*" … … 45 44 (in-package :pair-queue) 46 45 47 (defstruct (pair 48 (:constructor make-pair (first second 49 &aux 50 (division-data nil)))) 51 (first nil :type poly) 52 (second nil :type poly) 53 (division-data nil :type list)) 46 (defclass critical-pair () 47 ((first :initform nil :initarg :first) 48 (second :initform nil :initarg :second)) 49 (:documentation "Represents a critical pair.")) 50 54 51 55 52 (defvar *pair-key-function* nil
Note:
See TracChangeset
for help on using the changeset viewer.