- Minor codebase clean-up - Slight reorganisation of examples + tests so that we don't break stuff by accident - CI tests
18 lines
394 B
Plaintext
18 lines
394 B
Plaintext
# Context entities: e1 e4
|
|
# Reactions:
|
|
|
|
. proc = "m":
|
|
* (R={ e1 e4 },I={ e2 },P={ e1 e2 })
|
|
* (R={ e2 },I={ e4 },P={ e1 e4 e3 })
|
|
* (R={ e1 e3 },I={ e2 },P={ e1 e2 })
|
|
* (R={ e3 },I={ e2 },P={ e1 })
|
|
|
|
# Context Automaton States:
|
|
= Init state: s0
|
|
* s0
|
|
* s1
|
|
# Context Automaton Transitions:
|
|
* [s0 -> s1]: { m={ e1 e4 } }
|
|
* [s1 -> s1]: { m={ } }
|
|
* [s1 -> s1]: { m={ e4 } }
|