diff options
Diffstat (limited to 'test/Main.hs')
-rw-r--r-- | test/Main.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Main.hs b/test/Main.hs index 156e0a5..8257ff0 100644 --- a/test/Main.hs +++ b/test/Main.hs @@ -9,7 +9,7 @@ import Data.Array.Nested arr :: Ranked N2 (Shaped [N2, N3] (Double, Int)) arr = rgenerate (3 ::: 4 ::: IZR) $ \(i ::: j ::: IZR) -> sgenerate @[N2, N3] (2 ::$ 3 ::$ IZS) $ \(k ::$ l ::$ IZS) -> - let s = i + j + k + l + let s = 24*i + 6*j + 3*k + l in (fromIntegral s, s) foo :: (Double, Int) @@ -19,3 +19,4 @@ main :: IO () main = do print arr print foo + print (rtranspose [1,0] arr) |