MCPcopy Create free account
hub / github.com/Gecode/gecode / expectedSolutions

Method expectedSolutions

test/ldsb.cpp:450–460  ·  view source on GitHub ↗

Compute list of expected solutions

Source from the content-addressed store, hash-verified

448 }
449 /// Compute list of expected solutions
450 static std::vector<IntArgs> expectedSolutions(void) {
451 static std::vector<IntArgs> expected;
452 expected.clear();
453 expected.push_back(IntArgs({0,1,2,3}));
454 expected.push_back(IntArgs({0,2,1,3}));
455 expected.push_back(IntArgs({0,3,1,2}));
456 expected.push_back(IntArgs({1,2,0,3}));
457 expected.push_back(IntArgs({1,3,0,2}));
458 expected.push_back(IntArgs({2,3,0,1}));
459 return expected;
460 }
461 };
462
463 /// %Test for matrix symmetry

Callers

nothing calls this directly

Calls 2

IntArgsClass · 0.50
clearMethod · 0.45

Tested by

no test coverage detected