Home | Trees | Indices | Help |
|
---|
|
object --+ | Configuration_ABC
Base class for something that represents an Automaton in execution.
For deterministic automata, this is generally a Configuration which records the current automaton state along with its counter values.
For non-deterministic automata, this is a MultiConfiguration which records a set of Configurations.
|
|||
|
|||
|
|||
Inherited from |
|
|||
Inherited from |
|
Return the acceptable Symbols given the current configuration. This method extracts the symbol from all candidate transitions that are permitted based on the current counter values. Because transitions are presented in a preferred order, the symbols are as well. |
Execute an automaton transition using the given symbol.
Warning: If the step entered or left a sub-automaton the return value will not be the configuration that was used to execute the step. The proper pattern for using this method is: cfg = cfg.step(sym) |
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Wed Nov 7 19:27:35 2012 | http://epydoc.sourceforge.net |