Update cabal deps

This commit is contained in:
Kiana Sheibani 2021-12-26 19:41:32 -05:00
parent e064dc2639
commit b46079f50d
2 changed files with 7 additions and 3 deletions

View file

@ -26,6 +26,8 @@ gol r p s = EnvT r $ StoreT (Identity s) p
gol' :: DisplayableSpace f => Rule -> f a -> GOL f a
gol' r = gol r (0,0)
getNeighbors :: forall f a. Space f => GOL f a -> [a]
getNeighbors = experiment $ neighbors @f

View file

@ -10,10 +10,12 @@ executable main
main-is: Main.hs
other-modules: GOL.Rule,
GOL.Space,
GOL.Engine
GOL.Engine,
Graphics.Engine
build-depends: base,
vector,
comonad,
Yampa,
distributive,
adjunctions,
vector
Yampa,
gloss