A small package for simulating simple cellular automata.
Project description
PyCells
Whilst being very bored recently I started playing around with simulating cellular automata once again. But to challenge myself a bit more than usual I set three specific limitations that made this a bit harder than I was used to:
- The simulation functions should be able to handle n-dimensional rules and states.
- The rules should be given as integers.
- The state should be represented as an integer, making use of the fact that the whole state consists of a n-dimensional array of booleans that can be flattened.
Another additional burden I put on to myself was to implement multiple unique styles of rules:
- Pattern based rules, such as the popular 110 or 30.
- Neighbor count based rules, such as Conway's Game of Life.
Usage
From PyPi
- run
pip install pycells
- run
pycells
and check what options you have
From source
- clone this repo
- setup virtualenv using python
> 3.7
and./requirements.txt
- run
python simulate.py
I implemented both a cli and a file-based simulation configuration system. The cli is structured as follows:
$ python simulation.py
Usage: simulate.py [OPTIONS]
Simulate n-dimensional cellular automata using some of the most common
methods.
Options:
-p, --preset [conway|elementary]
simulation preset to use
-f, --file FILENAME file to load simulation config from
-d, --dimensions TEXT dimensions of the simulation, format:
N[xN[xN[...]]
-m, --method [count|pattern] simulation method
-r, --rule INTEGER rule to simulate
-i, --iterations INTEGER iterations to simulate
-n, --neighborhood-radius INTEGER
neighborhood radius to use
-o, --out FILE path to save the output to
--initial-state INTEGER initial simulation state
--parallelize enabled parallel calculation of cells per
state transition
--scaling INTEGER scaling to apply to output
--format [gif|png|npy|txt] format to output as, this skips the default
which is to simply use the most suitable for
the given number of dimensions
--help Show this message and exit.
To make use of file based configuration options simply write a YAML file that contains all
the necessary parameters. For some examples have a look in the ./examples
directory.
If you want to write binary numbers in these files I've added two tags to the yaml-parser
!b
and !br
(reverse). Using these files is as simple as running:
python simulate.py -f examples/glider.yml
Using the predefined presets is also similar, to use them simply make use of the -p
option
and fill in the rest of the undefined parameters:
python simulate.py -p conway -d 64x64 -i 32
Notice
Though this implementation can handle n-dimensional states as of now I have only implemented
graphical visualizations for 1D and 2D automata. If you want to create your own visualization
you can specify one of the text based formats (e.g. txt
, npy
).
Examples
1D pattern rule 772 radius=2
Conway's Game of Life (2D count rule 6152 radius=1)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pycells-0.1.3.tar.gz
.
File metadata
- Download URL: pycells-0.1.3.tar.gz
- Upload date:
- Size: 8.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c00f7de77b4cecedd235171d2c9f1042d34a5cde274ab22e5ee0dd584c4fcb0d |
|
MD5 | cb100ce8a38f898c9924c2cdb4b0a91b |
|
BLAKE2b-256 | c126414c82d74ff837fe561fe19fa06e902923083b98985f2c0e20407648b544 |