Setup problem constraints and symmetries
| 471 | static const int u = 1; |
| 472 | /// Setup problem constraints and symmetries |
| 473 | static void setup(Home home, IntVarArray& xs) { |
| 474 | Matrix<IntVarArray> m(xs, 2, 3); |
| 475 | Symmetries s; |
| 476 | s << rows_interchange(m); |
| 477 | branch(home, xs, INT_VAR_NONE(), INT_VAL_MIN(), s); |
| 478 | } |
| 479 | /// Compute list of expected solutions |
| 480 | static std::vector<IntArgs> expectedSolutions(void) { |
| 481 | static std::vector<IntArgs> expected; |
nothing calls this directly
no test coverage detected