| 1531 | } |
| 1532 | |
| 1533 | void p_schedule_unary_optional(FlatZincSpace& s, const ConExpr& ce, |
| 1534 | AST::Node*) { |
| 1535 | IntVarArgs x = s.arg2intvarargs(ce[0]); |
| 1536 | IntArgs p = s.arg2intargs(ce[1]); |
| 1537 | BoolVarArgs m = s.arg2boolvarargs(ce[2]); |
| 1538 | unshare(s,x); |
| 1539 | unary(s, x, p, m); |
| 1540 | } |
| 1541 | |
| 1542 | void p_circuit(FlatZincSpace& s, const ConExpr& ce, AST::Node *ann) { |
| 1543 | int off = ce[0]->getInt(); |
nothing calls this directly
no test coverage detected