Guest User

Untitled

a guest
Apr 20th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <scxml>
  2. <parallel id="P">
  3. <state id="A">
  4. <state id="A-start">
  5. <transition target="A-done" event="t"/>
  6. </state>
  7. <state id="A-done"/>
  8. </state>
  9. <state id="B">
  10. <state id="B-start">
  11. <transition target="B-done" event="t"/>
  12. </state>
  13. <state id="B-done"/>
  14. </state>
  15. <transition target="done" cond="In('A-done') && In('B-done')"/>
  16. </parallel>
  17. <state id="done"/>
  18. </scxml>
Add Comment
Please, Sign In to add comment