neuropercolation/src/cellular_automaton/ca_rule.py

10 lines
166 B
Python
Raw Normal View History

2018-12-01 19:37:18 +00:00
from cellular_automaton.ca_cell import Cell
2018-12-01 14:14:22 +00:00
2018-12-01 19:37:18 +00:00
class Rule:
def __init__(self):
pass
def evolve_cell(self, cell: Cell, neighbours: list):
2018-12-01 14:14:22 +00:00
pass