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

123 lines
4.8 KiB
Python
Raw Normal View History

2015-05-31 22:13:14 +00:00
"""
The following determines the next state of a given cell in a CAM.
2015-05-31 22:13:14 +00:00
The ruleset takes in a collection of rules specifying neighborhoods, as well as the configurations of
said neighborhood that yield an "on" or "off" state on the cell a ruleset is being applied to.
2015-05-31 22:13:14 +00:00
@author: jrpotter
@date: May 31st, 2015
"""
2015-06-01 00:58:09 +00:00
import enum
import itertools as it
import numpy as np
2015-05-31 22:27:47 +00:00
2015-05-31 22:13:14 +00:00
class Ruleset:
"""
The primary class of this module, which saves configurations of cells that yield the next state.
The ruleset will take in configurations defined by the user that specify how a cell's state should change,
depending on the given neighborhood and current state. For example, if I have a configuration that states
2015-05-31 22:13:14 +00:00
[[0, 0, 0]
,[1, 0, 1]
,[1, 1, 1]
]
2015-05-31 22:13:14 +00:00
must match exactly for the center cell to be a 1, then each cell is checked for this configuration, and its
state is updated afterward (note the above is merely for clarity; a configuration is not defined as such). Note
configurations are checked until a match occurs, in a FIFO manner.
2015-05-31 22:13:14 +00:00
"""
class Method(enum.Enum):
2015-05-31 22:13:14 +00:00
"""
Specifies how a ruleset should be applied to a given cell.
* A match declares that a given configuration must match exactly for the cell to be considered on.
* A tolerance specifies that a configuration must match within a given percentage to be considered on.
* A specification allows the user to define a custom function which must return a boolean, declaring
whether a cell should be on or off. This function is given the current cell's state, as well as
the state of the cell's neighbors.
2015-05-31 22:13:14 +00:00
"""
MATCH = 0
TOLERATE = 1
SATISFY = 2
ALWAYS_PASS = 3
def __init__(self, method):
"""
@grid: Every ruleset is bound to a grid, which a ruleset is applied to.
@method: One of the values defined in the RulesetMethod enumeration. View class for description.
2015-05-31 22:13:14 +00:00
"""
2015-05-31 22:27:47 +00:00
self.method = method
self.configurations = []
2015-05-31 22:13:14 +00:00
def addConfiguration(self, grid, next_state, offsets):
2015-05-31 22:13:14 +00:00
"""
Creates a configuration and saves said configuration.
"""
config = Configuration(grid, next_state, offsets)
self.configurations.append(config)
2015-05-31 22:13:14 +00:00
def applyTo(self, f_index, grid, *args):
2015-05-31 22:13:14 +00:00
"""
Depending on a given method, applies ruleset to a cell.
2015-05-31 22:13:14 +00:00
@cell_index: The index of the cell in question, as offset by self.grid.flat. That means the index should be
a single number (not a tuple!).
2015-05-31 22:13:14 +00:00
@args: If our method is TOLERATE, we pass in a value in set [0, 1]. This specifies the threshold between a
passing (i.e. percentage of matches in a configuration is > arg) and failing. If our method is SATISFY,
arg should be a function returning a BOOL, which takes in a current cell's value, and the
value of its neighbors.
2015-05-31 22:13:14 +00:00
"""
for config in self.configurations:
2015-05-31 22:13:14 +00:00
# Determine the correct function to use
if self.method == Ruleset.Method.MATCH:
vfunc = self._matches
elif self.method == Ruleset.Method.TOLERATE:
vfunc = self._tolerates
elif self.method == Ruleset.Method.SATISFY:
vfunc = self._satisfies
elif self.method == Ruleset.Method.ALWAYS_PASS:
vfunc = lambda *args: True
2015-05-31 22:13:14 +00:00
# Apply the function if possible
2015-06-04 19:54:31 +00:00
passed, state = config.passes(f_index, grid, vfunc, *args)
if passed:
return state
2015-05-31 22:13:14 +00:00
return grid.flat[f_index]
2015-05-31 22:13:14 +00:00
def _matches(self, f_index, f_grid, indices, states):
2015-05-31 22:13:14 +00:00
"""
Determines that neighborhood matches expectation exactly.
2015-05-31 22:13:14 +00:00
Note this functions like the tolerate method with a tolerance of 1.
"""
return not np.count_nonzero(f_grid[indices] ^ states)
def _tolerates(self, f_index, f_grid, indices, states, tolerance):
2015-05-31 22:13:14 +00:00
"""
Determines that neighborhood matches expectation within tolerance.
We see that the percentage of actual matches are greater than or equal to the given tolerance level. If so, we
consider this cell to be alive. Note tolerance must be a value 0 <= t <= 1.
"""
2015-06-05 12:57:14 +00:00
non_matches = np.count_nonzero(f_grid[indices] ^ states)
return (non_matches / len(f_grid)) >= tolerance
2015-05-31 22:27:47 +00:00
def _satisfies(self, f_index, f_grid, indices, states, valid_func):
"""
Allows custom function to relay next state of given cell.
The passed function is supplied the list of 2-tuple elements, of which the first is a Cell and the second is
the expected state as declared in the Neighborhood, as well as the grid and cell in question.
"""
return valid_func(f_index, f_grid, indices, states)