summaryrefslogtreecommitdiff
path: root/lib/Numeric/LinearAlgebra/Tests/Instances.hs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Numeric/LinearAlgebra/Tests/Instances.hs')
-rw-r--r--lib/Numeric/LinearAlgebra/Tests/Instances.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Numeric/LinearAlgebra/Tests/Instances.hs b/lib/Numeric/LinearAlgebra/Tests/Instances.hs
index 771739a..6dd9cfe 100644
--- a/lib/Numeric/LinearAlgebra/Tests/Instances.hs
+++ b/lib/Numeric/LinearAlgebra/Tests/Instances.hs
@@ -84,7 +84,7 @@ instance (Element a, Arbitrary a) => Arbitrary (Matrix a) where
84 84
85#if MIN_VERSION_QuickCheck(2,0,0) 85#if MIN_VERSION_QuickCheck(2,0,0)
86 -- shrink any one of the components 86 -- shrink any one of the components
87 shrink a = map ((rows a) >< (cols a)) 87 shrink a = map (rows a >< cols a)
88 . shrinkListElementwise 88 . shrinkListElementwise
89 . concat . toLists 89 . concat . toLists
90 $ a 90 $ a