| 2499 | } |
| 2500 | #ifdef GECODE_HAS_SET_VARS |
| 2501 | SetVar |
| 2502 | FlatZincSpace::arg2SetVar(AST::Node* n) { |
| 2503 | SetVar x0; |
| 2504 | if (!n->isSetVar()) { |
| 2505 | IntSet d = arg2intset(n); |
| 2506 | x0 = SetVar(*this, d, d); |
| 2507 | } else { |
| 2508 | x0 = sv[n->getSetVar()]; |
| 2509 | } |
| 2510 | return x0; |
| 2511 | } |
| 2512 | SetVarArgs |
| 2513 | FlatZincSpace::arg2setvarargs(AST::Node* arg, int offset, int doffset, |
| 2514 | const IntSet& od) { |
no test coverage detected