- Timestamp:
- 2015-06-20T15:02:26-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/5am-poly.lisp
r2649 r2652 62 62 (def-fixture poly-context () 63 63 (let ((p (make-instance 'poly)) 64 (q (make-instance 'poly :order #'grlex>))64 (q (make-instance 'poly)) 65 65 (p+q (make-instance 'poly)) 66 66 (p-q (make-instance 'poly))) … … 76 76 (test poly 77 77 "Polynomial addition" 78 (with-fixture poly-context () 79 (is (r-equalp (add-to p q) p+q))) 80 (with-fixture poly-context () 81 (is (r-equalp (subtract-from p q) p-q)))) 78 (with-fixture poly-context () (is (r-equalp (add-to p q) p+q))) 79 ;;(with-fixture poly-context () (is (r-equalp (subtract-from p q) p-q))) 80 ) 82 81 83 82 (run! 'poly-suite)
Note:
See TracChangeset
for help on using the changeset viewer.