| 220 | } |
| 221 | |
| 222 | void |
| 223 | SetTestSpace::cardinality(int i, int cmin, int cmax) { |
| 224 | if (opt.log) { |
| 225 | olog << ind(4) << cmin << " <= #(x[" << i << "]) <= " << cmax |
| 226 | << std::endl; |
| 227 | } |
| 228 | Gecode::cardinality(*this, x[i], cmin, cmax); |
| 229 | } |
| 230 | |
| 231 | void |
| 232 | SetTestSpace::rel(int i, Gecode::IntRelType irt, int n) { |
no test coverage detected