Printing of the state constraints in the context automaton

This commit is contained in:
Artur Meski
2018-09-23 13:12:33 +01:00
parent 206996a700
commit ac97db8ead
2 changed files with 8 additions and 1 deletions

View File

@@ -56,9 +56,11 @@ typedef std::vector<ReactionCond> ReactionConds;
typedef std::map<Entity, ReactionConds> DecompReactions;
typedef std::vector<int> StateEntityToAction;
class StateConstr;
struct CtxAutTransition {
State src_state;
EntitiesForProc ctx;
StateConstr *state_constr;
State dst_state;
};