Skip to main content

An expandable cell class intended for constructing Cellular Automata

Project description

Cell class for Cellular Automata

How to install

pip install cellular-automata-class

How to use

Import the class as:

from cellular_automata_class import cell

It can be used to set up a lattice:

def set_lattice(length, choice):
    '''
    Given the choice of lattice pattern, sets a 2 dimensional, finite lattice,
    digits of which store a cell each
    '''

    lattice = []
    for n in range(length):
        lattice.append([])

    for x in range(length):
        for y in range(length):
            lattice[x] += [Cell(1,x,y) if x == math.floor(length/2) else Cell(0,x,y)]

    return lattice

In order to "play" the lattice, we need to iterate through the whole lattice calling cell.evaluate() method:

def play(lattice, evaluation_count):
    '''
    After main() receives the input and sets the lattice,
    play() takes care of the rest. Just to keep main() tiny and neat.
    '''
    images = []
    for n in range(evaluation_count): 
        lattice_copy = copy.deepcopy(lattice)
        for x in lattice:
            for y in x:
                y.evaluate(lattice_copy)

The class can be expanded in various ways. E.g. we can add stochastic element to it, we can add new neighborhood types, etc.

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

cellular_automata_class-0.0.3.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

cellular_automata_class-0.0.3-py3-none-any.whl (5.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page