Setup problem constraints and symmetries
| 312 | static const int u = 3; |
| 313 | /// Setup problem constraints and symmetries |
| 314 | static void setup(Home home, IntVarArray& xs) { |
| 315 | Symmetries syms; |
| 316 | IntArgs indices({0,1,2,3}); |
| 317 | syms << VariableSymmetry(xs); |
| 318 | branch(home, xs, INT_VAR_NONE(), INT_VAL_MIN(), syms); |
| 319 | } |
| 320 | /// Compute list of expected solutions |
| 321 | static std::vector<IntArgs> expectedSolutions(void) { |
| 322 | static std::vector<IntArgs> expected; |
nothing calls this directly
no test coverage detected