Setup problem constraints and symmetries
| 626 | static const int u = 1; |
| 627 | /// Setup problem constraints and symmetries |
| 628 | static void setup(Home home, IntVarArray& xs) { |
| 629 | Matrix<IntVarArray> m(xs, 1, 4); |
| 630 | Symmetries s; |
| 631 | s << rows_reflect(m); |
| 632 | branch(home, xs, INT_VAR_NONE(), INT_VAL_MIN(), s); |
| 633 | } |
| 634 | /// Compute list of expected solutions |
| 635 | static std::vector<IntArgs> expectedSolutions(void) { |
| 636 | static std::vector<IntArgs> expected; |
nothing calls this directly
no test coverage detected