├── .gitignore ├── CHEATING ├── DOCUMENTATION ├── LICENSE ├── README ├── cells.py ├── cells_helpers.pyx ├── minds ├── __init__.py ├── ben.py ├── ben2.py ├── benmark.py ├── benvolution.py ├── benvolution_genetic.py ├── crawling_chaos.py ├── evolving_chaos.py ├── genes.py ├── japhet.py ├── jayshoo.py ├── mind1.py ├── mind2.py ├── mind3.py ├── seken.py └── zenergizer.py ├── setup.py ├── terrain ├── __init__.py └── generator.py └── tournament.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/.gitignore -------------------------------------------------------------------------------- /CHEATING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/CHEATING -------------------------------------------------------------------------------- /DOCUMENTATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/DOCUMENTATION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/README -------------------------------------------------------------------------------- /cells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/cells.py -------------------------------------------------------------------------------- /cells_helpers.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/cells_helpers.pyx -------------------------------------------------------------------------------- /minds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minds/ben.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/minds/ben.py -------------------------------------------------------------------------------- /minds/ben2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/minds/ben2.py -------------------------------------------------------------------------------- /minds/benmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/minds/benmark.py -------------------------------------------------------------------------------- /minds/benvolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/minds/benvolution.py -------------------------------------------------------------------------------- /minds/benvolution_genetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/minds/benvolution_genetic.py -------------------------------------------------------------------------------- /minds/crawling_chaos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/minds/crawling_chaos.py -------------------------------------------------------------------------------- /minds/evolving_chaos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/minds/evolving_chaos.py -------------------------------------------------------------------------------- /minds/genes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/minds/genes.py -------------------------------------------------------------------------------- /minds/japhet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/minds/japhet.py -------------------------------------------------------------------------------- /minds/jayshoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/minds/jayshoo.py -------------------------------------------------------------------------------- /minds/mind1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/minds/mind1.py -------------------------------------------------------------------------------- /minds/mind2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/minds/mind2.py -------------------------------------------------------------------------------- /minds/mind3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/minds/mind3.py -------------------------------------------------------------------------------- /minds/seken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/minds/seken.py -------------------------------------------------------------------------------- /minds/zenergizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/minds/zenergizer.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/setup.py -------------------------------------------------------------------------------- /terrain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terrain/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/terrain/generator.py -------------------------------------------------------------------------------- /tournament.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phreeza/cells/HEAD/tournament.py --------------------------------------------------------------------------------