We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0c68909 + 061cf5c commit b33787eCopy full SHA for b33787e
passes/opt/share.cc
@@ -1325,8 +1325,8 @@ struct ShareWorker
1325
1326
qcsat.ez->assume(qcsat.ez->AND(sub1, sub2));
1327
1328
- log(" Size of SAT problem: %d variables, %d clauses\n",
1329
- qcsat.ez->numCnfVariables(), qcsat.ez->numCnfClauses());
+ log(" Size of SAT problem: %zu cells, %d variables, %d clauses\n",
+ qcsat.imported_cells.size(), qcsat.ez->numCnfVariables(), qcsat.ez->numCnfClauses());
1330
1331
if (qcsat.ez->solve(sat_model, sat_model_values)) {
1332
log(" According to the SAT solver this pair of cells can not be shared.\n");
0 commit comments