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.

Ignore:
Timestamp:
2015-06-20T01:47:17-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

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

    r2606 r2613  
    176176;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
    177177
     178(def-fixture poly-context ()
     179  (let ((p (make-instance 'poly))
     180        (q (make-instance 'poly :order #'grlex>)))
     181    (dotimes (i 5)
     182      (insert-item p (make-instance 'term :exponents (list (* 3 i) i) :coeff (1+ (* 3 i))))
     183      (insert-item q (make-instance 'term :exponents (list (+ (* 3 i) 2) i) :coeff (1- (* 3 i)))))
     184    (&body)))
     185
     186
    178187(test poly
    179188  "Polynomial"
Note: See TracChangeset for help on using the changeset viewer.