Setup problem constraints and symmetries
| 287 | static const int u = 3; |
| 288 | /// Setup problem constraints and symmetries |
| 289 | static void setup(Home home, IntVarArray& xs) { |
| 290 | distinct(home, xs); |
| 291 | Symmetries syms; |
| 292 | syms << VariableSymmetry(xs); |
| 293 | branch(home, xs, INT_VAR_NONE(), INT_VAL_MIN(), syms); |
| 294 | } |
| 295 | /// Compute list of expected solutions |
| 296 | static std::vector<IntArgs> expectedSolutions(void) { |
| 297 | static std::vector<IntArgs> expected; |
nothing calls this directly
no test coverage detected