2021-12-11 15:13:39 -05:00
|
|
|
name: conways-game-of-life
|
|
|
|
version: 0.1
|
|
|
|
synopsis: A simple implementation of Conway's Game of Life using comonads
|
|
|
|
author: Kiana Sheibani
|
|
|
|
license: MIT
|
|
|
|
build-type: Simple
|
|
|
|
cabal-version: >= 1.8
|
|
|
|
|
|
|
|
executable main
|
2021-12-20 15:25:54 -05:00
|
|
|
main-is: Main.hs
|
|
|
|
other-modules: GOL.Rule,
|
|
|
|
GOL.Space,
|
2021-12-26 19:41:32 -05:00
|
|
|
GOL.Engine,
|
2021-12-26 20:41:28 -05:00
|
|
|
Graphics.GlossUtils,
|
2021-12-26 19:41:32 -05:00
|
|
|
Graphics.Engine
|
2021-12-20 15:25:54 -05:00
|
|
|
build-depends: base,
|
2021-12-26 19:41:32 -05:00
|
|
|
vector,
|
2021-12-20 15:25:54 -05:00
|
|
|
comonad,
|
2021-12-21 21:36:59 -05:00
|
|
|
distributive,
|
|
|
|
adjunctions,
|
2021-12-26 19:41:32 -05:00
|
|
|
Yampa,
|
|
|
|
gloss
|