summaryrefslogtreecommitdiff
path: root/packages/tests
diff options
context:
space:
mode:
authorPatrik Jansson <patrik.ja@gmail.com>2015-10-28 22:00:21 +0100
committerPatrik Jansson <patrik.ja@gmail.com>2015-10-28 22:00:21 +0100
commitef7283f6254422204c8f68c4cdde0094003e127f (patch)
treebe0ce12f6792414d9c847790f5ee61f893d63ab5 /packages/tests
parent60421ac66146366c6acd984b89475ba10c13e6c6 (diff)
Following through the change of type in meanCov to the test and to gaussianSamle. Not tested.
Diffstat (limited to 'packages/tests')
-rw-r--r--packages/tests/src/Numeric/LinearAlgebra/Tests.hs4
1 files changed, 1 insertions, 3 deletions
diff --git a/packages/tests/src/Numeric/LinearAlgebra/Tests.hs b/packages/tests/src/Numeric/LinearAlgebra/Tests.hs
index 4b631cf..56546b6 100644
--- a/packages/tests/src/Numeric/LinearAlgebra/Tests.hs
+++ b/packages/tests/src/Numeric/LinearAlgebra/Tests.hs
@@ -137,7 +137,7 @@ randomTestGaussian = c :~1~: snd (meanCov dat) where
137 2,4,0, 137 2,4,0,
138 -2,2,1] 138 -2,2,1]
139 m = 3 |> [1,2,3] 139 m = 3 |> [1,2,3]
140 c = a <> tr a 140 c = mTm a
141 dat = gaussianSample 7 (10^6) m c 141 dat = gaussianSample 7 (10^6) m c
142 142
143randomTestUniform = c :~1~: snd (meanCov dat) where 143randomTestUniform = c :~1~: snd (meanCov dat) where
@@ -944,5 +944,3 @@ luBench_2 = do
944 luBenchN_2 luSolve' luPacked' 500 (5::R) "luSolve'.luPacked' Double " 944 luBenchN_2 luSolve' luPacked' 500 (5::R) "luSolve'.luPacked' Double "
945 luBenchN_2 luSolve' luPacked' 500 (5::Mod 9973 I) "luSolve'.luPacked' I mod 9973" 945 luBenchN_2 luSolve' luPacked' 500 (5::Mod 9973 I) "luSolve'.luPacked' I mod 9973"
946 luBenchN_2 luSolve' luPacked' 500 (5::Mod 9973 Z) "luSolve'.luPacked' Z mod 9973" 946 luBenchN_2 luSolve' luPacked' 500 (5::Mod 9973 Z) "luSolve'.luPacked' Z mod 9973"
947
948