Files
PolyCubeCounting/pcc-haskell/app/Main.hs
Maxime Vorwerk 7f97cffd8e basic stack setup
2024-02-19 17:17:20 +01:00

11 lines
323 B
Haskell

module Main (main) where
import PolyCube
import qualified Data.HashMap.Strict as Map
main :: IO ()
main = do
let cube = PolyCube (map (const $ [Coord3D (0, 0, 0)]) ([1..24]::[Int])) [Coord3D (0, 0, 0)]
let polycubes = Map.singleton (getOffsets $ head $ orientations cube) (head $ orientations cube)
return ()