Setup problem constraints and symmetries
| 883 | static const int u = 3; |
| 884 | /// Setup problem constraints and symmetries |
| 885 | static void setup(Home home, IntVarArray& xs) { |
| 886 | distinct(home, xs); |
| 887 | Symmetries s; |
| 888 | s << ValueSymmetry(xs[0]); |
| 889 | branch(home, xs, INT_VAR_NONE(), INT_VAL_MIN(), s); |
| 890 | } |
| 891 | /// Compute list of expected solutions |
| 892 | static std::vector<IntArgs> expectedSolutions(void) { |
| 893 | static std::vector<IntArgs> expected; |
nothing calls this directly
no test coverage detected