Setup problem constraints and symmetries
| 908 | static const int u = 3; |
| 909 | /// Setup problem constraints and symmetries |
| 910 | static void setup(Home home, IntVarArray& xs) { |
| 911 | distinct(home, xs); |
| 912 | Symmetries s; |
| 913 | s << ValueSymmetry(xs[0]); |
| 914 | branch(home, xs, INT_VAR_NONE(), INT_VAL_MAX(), s); |
| 915 | } |
| 916 | /// Compute list of expected solutions |
| 917 | static std::vector<IntArgs> expectedSolutions(void) { |
| 918 | static std::vector<IntArgs> expected; |
nothing calls this directly
no test coverage detected