Setup problem constraints and symmetries
| 371 | static const int u = 3; |
| 372 | /// Setup problem constraints and symmetries |
| 373 | static void setup(Home home, IntVarArray& xs) { |
| 374 | Symmetries syms; |
| 375 | distinct(home, xs); |
| 376 | syms << VariableSymmetry(IntVarArgs() << xs[0] << xs[1]); |
| 377 | branch(home, xs, INT_VAR_NONE(), INT_VAL_MIN(), syms); |
| 378 | } |
| 379 | /// Compute list of expected solutions |
| 380 | static std::vector<IntArgs> expectedSolutions(void) { |
| 381 | static std::vector<IntArgs> expected; |
nothing calls this directly
no test coverage detected