Changeset 3953 for branches/f4grobner
- Timestamp:
- 2016-05-30T00:49:46-07:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/5am-pair-queue.lisp
r3917 r3953 59 59 60 60 (def-fixture poly-context () 61 (let ((p (string->poly "11*x*y*z+13*x^2*y^3*z^4" '(x y z))) 62 (q (string->poly "5*x+7*y*z^2" '(x y z)))) 61 (let* ((p (string->poly "11*x*y*z+13*x^2*y^3*z^4" '(x y z))) 62 (q (string->poly "5*x+7*y*z^2" '(x y z))) 63 (queue (make-instance 'critical-pair-queue :poly-list (list p q)))) 63 64 (&body))) 64 65 65 (test sugar-pair-key66 " Pair keybuilding"66 (test queue-building 67 "Queue building" 67 68 (with-fixture poly-context () 68 (is ( equalp (sugar-pair-key p q) nil))))69 (is (universal-equalp p p)))) 69 70 70 71 (run! 'pair-queue-suite)
Note:
See TracChangeset
for help on using the changeset viewer.