Setup problem constraints and symmetries
| 1387 | static const int u = 1; |
| 1388 | /// Setup problem constraints and symmetries |
| 1389 | static void setup(Home home, SetVarArray& xs) { |
| 1390 | Symmetries syms; |
| 1391 | syms << ValueSymmetry(IntArgs({0,1})); |
| 1392 | branch(home, xs, SET_VAR_NONE(), SET_VAL_MIN_INC(), syms); |
| 1393 | } |
| 1394 | /// Compute list of expected solutions |
| 1395 | static std::vector<IntSetArgs> expectedSolutions(void) { |
| 1396 | static std::vector<IntSetArgs> expected; |
nothing calls this directly
no test coverage detected