Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 879 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 879 Bytes

Elementary Cellular Automata

This example demonstrates the Rule 30 Elementary Cellular Automaton. Currently, only 1- and 2-dimensional k-color Cellular Automata with periodic boundary conditions are supported. The size of the neighbourhood can be adjusted. The Cellular Automata produced by this library match the corresponding Cellular Automata available at atlas.wolfram.com.

import netomaton as ntm

network = ntm.topology.cellular_automaton(n=200)

initial_conditions = [0] * 100 + [1] + [0] * 99

trajectory = ntm.evolve(network=network, initial_conditions=initial_conditions,
                        activity_rule=ntm.rules.nks_ca_rule(30), timesteps=100)

ntm.plot_activities(trajectory)

The full source code for this example can be found here.