1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
<?xml version="1.0"?>
<opsa-mef>
<define-initiating-event name="I" event-tree="InstructionCheck"/>
<define-event-tree name="InstructionCheck">
<define-sequence name="S"/>
<define-branch name="B">
<if>
<bool value="true"/>
<block>
<collect-expression>
<float value="0.2"/>
</collect-expression>
<collect-expression>
<float value="0.5"/>
</collect-expression>
</block>
</if>
<sequence name="S"/>
</define-branch>
<initial-state>
<block/>
<branch name="B"/>
</initial-state>
</define-event-tree>
</opsa-mef>
|