10.7 Maneuvers

In this example, one Maneuver is used to group two instances of Event. Two instances of Maneuver may also be used, each hosting one Event. Both alternatives yield the same simulation outcome, as long as each Event retains its startTrigger.

<Maneuver name="Maneuver 1">
  <ParameterDeclarations/>
  <Event priority="override" maximumExecutionCount="1" name="Turn left">
    <!-- ... -->
  </Event>
  <Event priority="override" maximumExecutionCount="1" name="Turn right">
    <!-- ... -->
  </Event>
</Maneuver>