Setup problem constraints and symmetries
| 1337 | static const int u = 1; |
| 1338 | /// Setup problem constraints and symmetries |
| 1339 | static void setup(Home home, SetVarArray& xs) { |
| 1340 | Symmetries syms; |
| 1341 | syms << VariableSymmetry(xs); |
| 1342 | branch(home, xs, SET_VAR_NONE(), SET_VAL_MIN_INC(), syms); |
| 1343 | } |
| 1344 | /// Compute list of expected solutions |
| 1345 | static std::vector<IntSetArgs> expectedSolutions(void) { |
| 1346 | static std::vector<IntSetArgs> expected; |
nothing calls this directly
no test coverage detected