LogiView

Combining Conditions

  The association rules for parenthesis and conditions in LogiView are the same as in the programming language C.
 

Example 1:

  if (known(ANSWER) & EP_ANSWER == TRUE)
  Result:
  In this case, the second condition is only evaluated if the first is met.
 

Example 2:

  if (known(ANSWER) | EP_ANSWER == TRUE)
  Result:
  In this example, the second condition is only evaluated if the first one is FALSE.