summaryrefslogtreecommitdiff
path: root/examples/tests.hs
diff options
context:
space:
mode:
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