diff options
author | Tom Smeding <tom@tomsmeding.com> | 2024-05-30 11:58:40 +0200 |
---|---|---|
committer | Tom Smeding <tom@tomsmeding.com> | 2024-05-30 11:58:40 +0200 |
commit | a65306ba5d80891b20ac86fa3a3242f9497751e6 (patch) | |
tree | 834af370556a46bbeca807a92c31bef098b47a89 /test | |
parent | d8e2fcf4ea979fe272db48fc2889f4c2636c50d7 (diff) |
Refactor Mixed (modules, regular function names)
Diffstat (limited to 'test')
-rw-r--r-- | test/Gen.hs | 3 | ||||
-rw-r--r-- | test/Util.hs | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/test/Gen.hs b/test/Gen.hs index 2d2a30b..9652963 100644 --- a/test/Gen.hs +++ b/test/Gen.hs @@ -18,7 +18,8 @@ import Foreign import GHC.TypeLits import qualified GHC.TypeNats as TN -import Data.Array.Mixed (fromSNat', pattern SZ, pattern SS) +import Data.Array.Mixed +import Data.Array.Mixed.Types import Data.Array.Nested import Hedgehog diff --git a/test/Util.hs b/test/Util.hs index 1249bf9..9afa922 100644 --- a/test/Util.hs +++ b/test/Util.hs @@ -11,7 +11,7 @@ module Util where import qualified Data.Array.RankedS as OR import GHC.TypeLits -import Data.Array.Mixed (fromSNat') +import Data.Array.Mixed.Types (fromSNat') import Data.Array.Nested |