| 599 | BOOL_OP(BOT_AND); |
| 600 | } |
| 601 | void p_bool_and_imp(FlatZincSpace& s, const ConExpr& ce, AST::Node* ann) { |
| 602 | BoolVar b0 = s.arg2BoolVar(ce[0]); |
| 603 | BoolVar b1 = s.arg2BoolVar(ce[1]); |
| 604 | BoolVar b2 = s.arg2BoolVar(ce[2]); |
| 605 | rel(s, b2, BOT_IMP, b0, 1, s.ann2ipl(ann)); |
| 606 | rel(s, b2, BOT_IMP, b1, 1, s.ann2ipl(ann)); |
| 607 | } |
| 608 | void p_array_bool_and(FlatZincSpace& s, const ConExpr& ce, AST::Node* ann) |
| 609 | { |
| 610 | BOOL_ARRAY_OP(BOT_AND); |
nothing calls this directly
no test coverage detected