Program
- class Program(rule_sequences: Dict[str, RuleSequence], entry_point: str)
A
Programacts as a map ofRuleSequenceobjects keyed by their labels.Defines
__iter__,__contains__,__getitem__, and__setitem__to operate on the dict of rule sequences provided.- Parameters:
rule_sequences – The rule sequences of the program.
entry_point – The label of the sequence to run first when applied to a
ShapebyShapeMachine.
Methods