| 622 | BOOL_ARRAY_OP(BOT_OR); |
| 623 | } |
| 624 | void p_array_bool_or_imp(FlatZincSpace& s, const ConExpr& ce, |
| 625 | AST::Node* ann) |
| 626 | { |
| 627 | BoolVarArgs bv = s.arg2boolvarargs(ce[0]); |
| 628 | BoolVar b1 = s.arg2BoolVar(ce[1]); |
| 629 | clause(s, BOT_OR, bv, BoolVarArgs()<<b1, 1, s.ann2ipl(ann)); |
| 630 | } |
| 631 | void p_array_bool_xor(FlatZincSpace& s, const ConExpr& ce, AST::Node* ann) |
| 632 | { |
| 633 | BOOL_ARRAY_OP(BOT_XOR); |
nothing calls this directly
no test coverage detected