Adjust initial README

This commit is contained in:
timofej 2023-08-16 20:11:21 +02:00
parent 6d1666bb8b
commit 9e94ae245d

View File

@ -1,11 +1,13 @@
# Cellular Automaton
This package provides an cellular automaton for [Python 3](https://www.python.org/)
# Neuropecolation
This package provides an neuropercolation model for [Python 3](https://www.python.org/) forked from Richard Feistenauer's [cellular-automaton](https://gitlab.com/DamKoVosh/cellular_automaton).
<!---
A cellular automaton defines a grid of cells and a set of rules.
All cells then evolve their state depending on their neighbours state simultaneously.
For further information on cellular automatons consult e.g. [mathworld.wolfram.com](http://mathworld.wolfram.com/CellularAutomaton.html)
## Yet another cellular automaton module?
It is not the first python module to provide a cellular automaton,
but it is to my best knowledge the first that provides all of the following features:
@ -140,6 +142,8 @@ And for all others, don't hesitate to open issues when you have problems!
- Cell color is now defined by the CAWindow `state_to_color_cb` parameter.
- Neighborhood does not need to know the dimension anymore
--->
## Dependencies
There is only a dependency for [recordclass](https://pypi.org/project/recordclass/) at the moment.