summaryrefslogtreecommitdiff
path: root/lib/Numeric/LinearAlgebra/Tests.hs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Numeric/LinearAlgebra/Tests.hs')
-rw-r--r--lib/Numeric/LinearAlgebra/Tests.hs7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/Numeric/LinearAlgebra/Tests.hs b/lib/Numeric/LinearAlgebra/Tests.hs
index 7284cd9..8c55486 100644
--- a/lib/Numeric/LinearAlgebra/Tests.hs
+++ b/lib/Numeric/LinearAlgebra/Tests.hs
@@ -178,6 +178,11 @@ runTests n = do
178 putStrLn "------ luSolve" 178 putStrLn "------ luSolve"
179 test (linearSolveProp (luSolve.luPacked) . rSqWC) 179 test (linearSolveProp (luSolve.luPacked) . rSqWC)
180 test (linearSolveProp (luSolve.luPacked) . cSqWC) 180 test (linearSolveProp (luSolve.luPacked) . cSqWC)
181 putStrLn "------ luSolveLS"
182 test (linearSolveProp linearSolveLS . rSqWC)
183 test (linearSolveProp linearSolveLS . cSqWC)
184 test (linearSolveProp2 linearSolveLS . rConsist)
185 test (linearSolveProp2 linearSolveLS . cConsist)
181 putStrLn "------ pinv (linearSolveSVD)" 186 putStrLn "------ pinv (linearSolveSVD)"
182 test (pinvProp . rM) 187 test (pinvProp . rM)
183 test (pinvProp . cM) 188 test (pinvProp . cM)
@@ -220,6 +225,8 @@ runTests n = do
220 putStrLn "------ qr" 225 putStrLn "------ qr"
221 test (qrProp . rM) 226 test (qrProp . rM)
222 test (qrProp . cM) 227 test (qrProp . cM)
228 test (rqProp . rM)
229 test (rqProp . cM)
223 putStrLn "------ hess" 230 putStrLn "------ hess"
224 test (hessProp . rSq) 231 test (hessProp . rSq)
225 test (hessProp . cSq) 232 test (hessProp . cSq)