PrevTopNext

DSL for Operator Order Processing (2)

Conditions in DRL:
$oc: OperatorOrder( $code: code, $opId: opId )
Operator( id == $opId )
not CommandCode( code == $code )

English
When there is an operator order and there is a matching operator but there is no matching command code...

DSL definitions:
[when]and a matching operator=
      $operator: Operator( id == $opId )
[when]and no matching command code=
      not CommandCode( code == $code )

Problem: The number of required translations grows and grows.


PrevTopNext