| 641 | rel(s, s.arg2BoolVar(ce[1]), BOT_IMP, tmp, 1); |
| 642 | } |
| 643 | void p_array_bool_clause(FlatZincSpace& s, const ConExpr& ce, |
| 644 | AST::Node* ann) { |
| 645 | BoolVarArgs bvp = s.arg2boolvarargs(ce[0]); |
| 646 | BoolVarArgs bvn = s.arg2boolvarargs(ce[1]); |
| 647 | clause(s, BOT_OR, bvp, bvn, 1, s.ann2ipl(ann)); |
| 648 | } |
| 649 | void p_array_bool_clause_reif(FlatZincSpace& s, const ConExpr& ce, |
| 650 | AST::Node* ann) { |
| 651 | BoolVarArgs bvp = s.arg2boolvarargs(ce[0]); |
nothing calls this directly
no test coverage detected