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

Method expectedSolutions

test/ldsb.cpp:1345–1365  ·  view source on GitHub ↗

Compute list of expected solutions

Source from the content-addressed store, hash-verified

1343 }
1344 /// Compute list of expected solutions
1345 static std::vector<IntSetArgs> expectedSolutions(void) {
1346 static std::vector<IntSetArgs> expected;
1347 expected.clear();
1348 expected.push_back(ISA(2, 0,1,-1, 0,1,-1));
1349 expected.push_back(ISA(2, 0,1,-1, 0, -1));
1350 expected.push_back(ISA(2, 0,1,-1, 1,-1));
1351 expected.push_back(ISA(2, 0,1,-1, -1));
1352 expected.push_back(ISA(2, 0, -1, 0,1,-1));
1353 expected.push_back(ISA(2, 0, -1, 0, -1));
1354 expected.push_back(ISA(2, 0, -1, 1,-1));
1355 expected.push_back(ISA(2, 0, -1, -1));
1356 // expected.push_back(ISA(2, 1,-1, 0,1,-1));
1357 // expected.push_back(ISA(2, 1,-1, 0, -1));
1358 expected.push_back(ISA(2, 1,-1, 1,-1));
1359 expected.push_back(ISA(2, 1,-1, -1));
1360 // expected.push_back(ISA(2, -1, 0,1,-1));
1361 // expected.push_back(ISA(2, -1, 0, -1));
1362 // expected.push_back(ISA(2, -1, 1,-1));
1363 expected.push_back(ISA(2, -1, -1));
1364 return expected;
1365 }
1366 };
1367
1368 /*

Callers

nothing calls this directly

Calls 2

ISAFunction · 0.85
clearMethod · 0.45

Tested by

no test coverage detected