Setup problem constraints and symmetries
| 261 | static const int u = 3; |
| 262 | /// Setup problem constraints and symmetries |
| 263 | static void setup(Home home, IntVarArray& xs) { |
| 264 | Symmetries syms; |
| 265 | IntArgs indices({0,1,2,3}); |
| 266 | syms << VariableSymmetry(xs, indices); |
| 267 | distinct(home, xs); |
| 268 | branch(home, xs, INT_VAR_NONE(), INT_VAL_MIN(), syms); |
| 269 | } |
| 270 | /// Compute list of expected solutions |
| 271 | static std::vector<IntArgs> expectedSolutions(void) { |
| 272 | static std::vector<IntArgs> expected; |
nothing calls this directly
no test coverage detected