You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When multiple automations are created only the entry and exit functions can be used for a single automation. For example:
entry() <s1: A1> { print("A1"; }
entry() <s1: A2> { print("A2"; }
entry() <s2: B1> { print("B1"; }
entry() <s2: B2> { print("B2"; }
Results in error 084: state conflict: one of the states is already assigned to another implementation ( symbol "entry").
It would be nice to use the automation rather than formulate a custom framework.
The text was updated successfully, but these errors were encountered:
When multiple automations are created only the entry and exit functions can be used for a single automation. For example:
entry() <s1: A1> { print("A1"; }
entry() <s1: A2> { print("A2"; }
entry() <s2: B1> { print("B1"; }
entry() <s2: B2> { print("B2"; }
Results in error 084: state conflict: one of the states is already assigned to another implementation ( symbol "entry").
It would be nice to use the automation rather than formulate a custom framework.
The text was updated successfully, but these errors were encountered: