| 1524 | } |
| 1525 | |
| 1526 | void p_schedule_unary(FlatZincSpace& s, const ConExpr& ce, AST::Node*) { |
| 1527 | IntVarArgs x = s.arg2intvarargs(ce[0]); |
| 1528 | IntArgs p = s.arg2intargs(ce[1]); |
| 1529 | unshare(s,x); |
| 1530 | unary(s, x, p); |
| 1531 | } |
| 1532 | |
| 1533 | void p_schedule_unary_optional(FlatZincSpace& s, const ConExpr& ce, |
| 1534 | AST::Node*) { |
nothing calls this directly
no test coverage detected