Setup problem constraints and symmetries
| 972 | static const int u = 3; |
| 973 | /// Setup problem constraints and symmetries |
| 974 | static void setup(Home home, IntVarArray& xs) { |
| 975 | Symmetries s; |
| 976 | s << ValueSymmetry(xs[0]); |
| 977 | branch(home, xs, INT_VAR_NONE(), INT_VAL_MIN(), s); |
| 978 | } |
| 979 | /// Compute list of expected solutions |
| 980 | static std::vector<IntArgs> expectedSolutions(void) { |
| 981 | static std::vector<IntArgs> expected; |
nothing calls this directly
no test coverage detected