# 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](http://atlas.wolfram.com). ```python 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](elementary_ca_demo.py).