diff options
author | Alberto Ruiz <aruiz@um.es> | 2008-10-02 15:53:10 +0000 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2008-10-02 15:53:10 +0000 |
commit | 192ac5f4b98517862c37ecf161505396ad223cd8 (patch) | |
tree | 811312f28bca2bd18d282bc0be732a17cd8dbcd7 /lib/Numeric/LinearAlgebra/Tests.hs | |
parent | 9c6b2af0066f7608301ad685ea5e60753fc3b6ff (diff) |
alternative multiply versions
Diffstat (limited to 'lib/Numeric/LinearAlgebra/Tests.hs')
-rw-r--r-- | lib/Numeric/LinearAlgebra/Tests.hs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Numeric/LinearAlgebra/Tests.hs b/lib/Numeric/LinearAlgebra/Tests.hs index 7b28075..07b9f63 100644 --- a/lib/Numeric/LinearAlgebra/Tests.hs +++ b/lib/Numeric/LinearAlgebra/Tests.hs | |||
@@ -123,6 +123,11 @@ runTests :: Int -- ^ maximum dimension | |||
123 | runTests n = do | 123 | runTests n = do |
124 | setErrorHandlerOff | 124 | setErrorHandlerOff |
125 | let test p = qCheck n p | 125 | let test p = qCheck n p |
126 | putStrLn "------ mult" | ||
127 | test (multProp1 . rConsist) | ||
128 | test (multProp1 . cConsist) | ||
129 | test (multProp2 . rConsist) | ||
130 | test (multProp2 . cConsist) | ||
126 | putStrLn "------ lu" | 131 | putStrLn "------ lu" |
127 | test (luProp . rM) | 132 | test (luProp . rM) |
128 | test (luProp . cM) | 133 | test (luProp . cM) |