]> gitweb.factorcode.org Git - factor.git/commitdiff
unit test for m^n
authorprunedtree <prunedtree@gmail.com>
Fri, 12 Jun 2009 08:35:25 +0000 (01:35 -0700)
committerprunedtree <prunedtree@gmail.com>
Fri, 12 Jun 2009 08:35:25 +0000 (01:35 -0700)
basis/math/matrices/matrices-tests.factor

index 20942356dedf16467e5feb3924ccb6d862510e88..3ee1ddbd6d229b5baa85c11afbf8c58840e207d2 100644 (file)
@@ -106,4 +106,7 @@ USING: math.matrices math.vectors tools.test math ;
 [ { 1 0 0 } ] [ { 1 1 0 } { 1 0 0 } proj ] unit-test
 
 [ { { { 1 "a" } { 1 "b" } } { { 2 "a" } { 2 "b" } } } ]
-[ { 1 2 } { "a" "b" } cross-zip ] unit-test
\ No newline at end of file
+[ { 1 2 } { "a" "b" } cross-zip ] unit-test
+
+[ { { 4181 6765 } { 6765 10946 } } ]
+[ { { 0 1 } { 1 1 } } 20 m^n ] unit-test