r
/
fifth
1
Fork 0
fifth/src/cam.py

22 lines
458 B
Python
Raw Normal View History

2015-05-31 03:36:35 +00:00
"""
"""
class CAM:
"""
Represents a Cellular Automata Machine (CAM).
The CAM consists of any number of bit planes that allow for increasingly complex cellular automata.
This is the top-level module that should be used by anyone wanting to work with fifth, and provides
all methods needed (i.e. supported) to interact/configure the cellular automata as desired.
"""
def __init__(self):
"""
"""
pass