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 314


Ignore:
Timestamp:
2015-06-06T10:23:52-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/utils-tests.lisp

    r312 r314  
    5858
    5959(test makelist
    60   "makelist test"
     60  "makelist"
    6161  (is (equal (ngrobner:makelist (+ (* i i) (* j j)) (i 1 4) (j 1 i)) '(2 5 8 10 13 18 17 20 25 32)))
    6262  (is (equal (ngrobner:makelist (list i j '---> (+ (* i i) (* j j))) (i 1 4) (j 1 i))
     
    6464               (3 3 ---> 18) (4 1 ---> 17) (4 2 ---> 20) (4 3 ---> 25) (4 4 ---> 32)))))
    6565
     66(test monom
     67  "monom"
     68  (is (equalp (ngrobner::make-monom 3) #(0 0 0)))
     69  (is (equalp (ngrobner::make-monom 3 :initial-contents '(1 2 3)) #(1 3 3))))
    6670 
    6771(run!)
Note: See TracChangeset for help on using the changeset viewer.