summaryrefslogtreecommitdiff
path: root/examples/tests.hs
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2007-09-12 19:09:47 +0000
committerAlberto Ruiz <aruiz@um.es>2007-09-12 19:09:47 +0000
commit0ff13d993b880739295de343bca62f06fac5ca0c (patch)
tree252a51b4314c19c04a9eda87973eeaae63167a41 /examples/tests.hs
parentcd937c2be2900b8f13506d9ae7c731ad43d74e05 (diff)
documentation
Diffstat (limited to 'examples/tests.hs')
-rw-r--r--examples/tests.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/tests.hs b/examples/tests.hs
index 56bd2ab..0d8361e 100644
--- a/examples/tests.hs
+++ b/examples/tests.hs
@@ -92,8 +92,8 @@ epsTol = 1E-8::Double
92asFortran m = (rows m >|< cols m) $ toList (fdat m) 92asFortran m = (rows m >|< cols m) $ toList (fdat m)
93asC m = (rows m >< cols m) $ toList (cdat m) 93asC m = (rows m >< cols m) $ toList (cdat m)
94 94
95mulC a b = multiply RowMajor a b 95mulC a b = multiply' RowMajor a b
96mulF a b = multiply ColumnMajor a b 96mulF a b = multiply' ColumnMajor a b
97 97
98infixl 7 <> 98infixl 7 <>
99a <> b = mulF a b 99a <> b = mulF a b