Setup problem constraints and symmetries
| 521 | static const int u = 1; |
| 522 | /// Setup problem constraints and symmetries |
| 523 | static void setup(Home home, IntVarArray& xs) { |
| 524 | Matrix<IntVarArray> m(xs, 2, 3); |
| 525 | Symmetries s; |
| 526 | s << columns_interchange(m); |
| 527 | branch(home, xs, INT_VAR_NONE(), INT_VAL_MIN(), s); |
| 528 | } |
| 529 | /// Compute list of expected solutions |
| 530 | static std::vector<IntArgs> expectedSolutions(void) { |
| 531 | static std::vector<IntArgs> expected; |
nothing calls this directly
no test coverage detected