Setup problem constraints and symmetries
| 933 | static const int u = 3; |
| 934 | /// Setup problem constraints and symmetries |
| 935 | static void setup(Home home, IntVarArray& xs) { |
| 936 | Symmetries s; |
| 937 | IntArgs indices({0,1,2,3}); |
| 938 | s << ValueSymmetry(indices); |
| 939 | branch(home, xs, INT_VAR_NONE(), INT_VAL_MIN(), s); |
| 940 | } |
| 941 | /// Compute list of expected solutions |
| 942 | static std::vector<IntArgs> expectedSolutions(void) { |
| 943 | static std::vector<IntArgs> expected; |
nothing calls this directly
no test coverage detected