]> gitweb.factorcode.org Git - factor.git/commitdiff
removing infix tests
authorDaniel Ehrenberg <microdan@gmail.com>
Mon, 24 Oct 2005 19:56:38 +0000 (19:56 +0000)
committerDaniel Ehrenberg <microdan@gmail.com>
Mon, 24 Oct 2005 19:56:38 +0000 (19:56 +0000)
contrib/algebra/tests.factor [deleted file]

diff --git a/contrib/algebra/tests.factor b/contrib/algebra/tests.factor
deleted file mode 100644 (file)
index 9796296..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-USING: algebra test math kernel prettyprint io ;
-
-[ [ - [ + x [ mod [ * 2 pi ] 4 ] ] ] ] [
-    ([ - x + [ 2 * pi ] mod 4 ])
-] unit-test
-[ 13/3 ] [
-    1 2 3 [ x y z ]  ([ [ sq y ] + x / z ]) eval-infix call
-] unit-test
-[ [ + x 1/2 ] ] [ ([ x + 3 / 6 ]) fold-consts ] unit-test
-[ 1 ] [ 5 3 [ x ] ([ sq x + 6 ]) install-mod eval-infix call ] unit-test
-[ 1.0 -1.0 ] [ 1 0 -1 quadratic-formula ] unit-test
-[ "IN: algebra :| quadratic-formula a b c |:\n    [ [ [ - b ] / 2 * a ] +- [ sqrt [ sq b ] - 4 * a * c ] / 2 * a ] ;\n" ] [ [ \ quadratic-formula  see ] string-out ] unit-test