close Warning: Can't synchronize with repository "(default)" (The repository directory has changed, you should resynchronize the repository with: trac-admin $ENV repository resync '(default)'). Look in the Trac log for more information.

Changeset 2652


Ignore:
Timestamp:
2015-06-20T15:02:26-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/5am-poly.lisp

    r2649 r2652  
    6262(def-fixture poly-context ()
    6363  (let ((p (make-instance 'poly))
    64         (q (make-instance 'poly :order #'grlex>))
     64        (q (make-instance 'poly))
    6565        (p+q (make-instance 'poly))
    6666        (p-q (make-instance 'poly)))
     
    7676(test poly
    7777  "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  )
    8281
    8382(run! 'poly-suite)
Note: See TracChangeset for help on using the changeset viewer.