Setup problem constraints and symmetries
| 1487 | static const int u = 0; |
| 1488 | /// Setup problem constraints and symmetries |
| 1489 | static void setup(Home home, SetVarArray& xs) { |
| 1490 | Symmetries syms; |
| 1491 | syms << VariableSequenceSymmetry(xs,2); |
| 1492 | rel(home, xs[0], SRT_EQ, xs[2]); |
| 1493 | branch(home, xs, SET_VAR_NONE(), SET_VAL_MIN_INC(), syms); |
| 1494 | } |
| 1495 | /// Compute list of expected solutions |
| 1496 | static std::vector<IntSetArgs> expectedSolutions(void) { |
| 1497 | static std::vector<IntSetArgs> expected; |
nothing calls this directly
no test coverage detected