| 1147 | } |
| 1148 | |
| 1149 | void p_maximum_arg_bool(FlatZincSpace& s, const ConExpr& ce, AST::Node* ann) { |
| 1150 | BoolVarArgs bv = s.arg2boolvarargs(ce[0]); |
| 1151 | unshare(s, bv); |
| 1152 | int offset = ce[1]->getInt(); |
| 1153 | argmax(s, bv, offset, s.arg2IntVar(ce[2]), true, s.ann2ipl(ann)); |
| 1154 | } |
| 1155 | |
| 1156 | void p_regular(FlatZincSpace& s, IntVarArgs iv, int q, int symbols_min, |
| 1157 | int symbols_max, IntArgs d, int q0, AST::SetLit* finals, |
nothing calls this directly
no test coverage detected