Package adams.flow.condition.bool
-
Class Summary Class Description MOAClassification Uses the index of the classification, i.e., the predicted label, as index of the switch
RandomNumberExpression Evaluates to 'true' if the expression evaluates to 'true'.
The 'X' in the expression is the number generated by the random number generator.
The following grammar is used for evaluating the boolean expressions:
expr_list ::= '=' expr_list expr_part | expr_part ;
expr_part ::= expr ;
expr ::= ( expr )
# data types
| number
| string
| boolean
| date
# constants
| true
| false
| pi
| e
| now()
| today()
# negating numeric value
| -expr
# comparisons
| expr < expr
| expr <= expr
| expr > expr
| expr >= expr
| expr = expr
| expr !