| 2133 | } |
| 2134 | |
| 2135 | void p_inverse_set(FlatZincSpace& s, const ConExpr& ce, AST::Node*) { |
| 2136 | int xoff = ce[2]->getInt(); |
| 2137 | int yoff = ce[3]->getInt(); |
| 2138 | SetVarArgs x = s.arg2setvarargs(ce[0],xoff); |
| 2139 | SetVarArgs y = s.arg2setvarargs(ce[1],yoff); |
| 2140 | channel(s, x, y); |
| 2141 | } |
| 2142 | |
| 2143 | void p_precede_set(FlatZincSpace& s, const ConExpr& ce, AST::Node*) { |
| 2144 | SetVarArgs x = s.arg2setvarargs(ce[0]); |
nothing calls this directly
no test coverage detected