summaryrefslogtreecommitdiff
path: root/lib/Numeric/LinearAlgebra/Tests/Properties.hs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Numeric/LinearAlgebra/Tests/Properties.hs')
-rw-r--r--lib/Numeric/LinearAlgebra/Tests/Properties.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Numeric/LinearAlgebra/Tests/Properties.hs b/lib/Numeric/LinearAlgebra/Tests/Properties.hs
index 42c6ce2..93175f2 100644
--- a/lib/Numeric/LinearAlgebra/Tests/Properties.hs
+++ b/lib/Numeric/LinearAlgebra/Tests/Properties.hs
@@ -119,7 +119,8 @@ detProp m = s d1 |~| s d2
119 (q,r) = qr m 119 (q,r) = qr m
120 s x = fromList [x] 120 s x = fromList [x]
121 121
122nullspaceProp m = null nl `trivial` (null nl || m <> n |~| zeros (r,c)) 122nullspaceProp m = null nl `trivial` (null nl || m <> n |~| zeros (r,c)
123 && orthonormal (fromColumns nl))
123 where nl = nullspacePrec 1 m 124 where nl = nullspacePrec 1 m
124 n = fromColumns nl 125 n = fromColumns nl
125 r = rows m 126 r = rows m