diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/tests/src/Numeric/LinearAlgebra/Tests/Instances.hs | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/packages/tests/src/Numeric/LinearAlgebra/Tests/Instances.hs b/packages/tests/src/Numeric/LinearAlgebra/Tests/Instances.hs index 23d7e6f..3211877 100644 --- a/packages/tests/src/Numeric/LinearAlgebra/Tests/Instances.hs +++ b/packages/tests/src/Numeric/LinearAlgebra/Tests/Instances.hs | |||
@@ -30,7 +30,7 @@ import Control.Monad(replicateM) | |||
30 | import Test.QuickCheck(Arbitrary,arbitrary,choose,vector,sized,shrink) | 30 | import Test.QuickCheck(Arbitrary,arbitrary,choose,vector,sized,shrink) |
31 | 31 | ||
32 | import GHC.TypeLits | 32 | import GHC.TypeLits |
33 | import Data.Proxy (Proxy) | 33 | import Data.Proxy (Proxy(..)) |
34 | import qualified Numeric.LinearAlgebra.Static as Static | 34 | import qualified Numeric.LinearAlgebra.Static as Static |
35 | 35 | ||
36 | 36 | ||
@@ -82,17 +82,12 @@ instance (KnownNat n, KnownNat m) => Arbitrary (Static.L m n) where | |||
82 | l <- vector (m * n) | 82 | l <- vector (m * n) |
83 | return (Static.fromList l) | 83 | return (Static.fromList l) |
84 | 84 | ||
85 | where proxyM :: Proxy m | 85 | where |
86 | proxyM = proxyM | 86 | m :: Int |
87 | m = fromIntegral (natVal (Proxy :: Proxy m)) | ||
87 | 88 | ||
88 | proxyN :: Proxy n | 89 | n :: Int |
89 | proxyN = proxyN | 90 | n = fromIntegral (natVal (Proxy :: Proxy n)) |
90 | |||
91 | m :: Int | ||
92 | m = fromIntegral (natVal proxyM) | ||
93 | |||
94 | n :: Int | ||
95 | n = fromIntegral (natVal proxyN) | ||
96 | 91 | ||
97 | shrink mat = [] | 92 | shrink mat = [] |
98 | 93 | ||