mirror of https://github.com/YosysHQ/yosys.git
share: fix misleading log message
This commit is contained in:
parent
8fd40942e9
commit
1836a571c9
|
@ -1255,7 +1255,6 @@ struct ShareWorker
|
|||
qcsat.max_cell_count = 100;
|
||||
}
|
||||
|
||||
pool<RTLIL::Cell*> sat_cells;
|
||||
std::set<RTLIL::SigBit> bits_queue;
|
||||
|
||||
std::vector<int> cell_active, other_cell_active;
|
||||
|
@ -1298,8 +1297,8 @@ struct ShareWorker
|
|||
|
||||
qcsat.ez->assume(qcsat.ez->AND(sub1, sub2));
|
||||
|
||||
log(" Size of SAT problem: %d cells, %d variables, %d clauses\n",
|
||||
GetSize(sat_cells), qcsat.ez->numCnfVariables(), qcsat.ez->numCnfClauses());
|
||||
log(" Size of SAT problem: %d variables, %d clauses\n",
|
||||
qcsat.ez->numCnfVariables(), qcsat.ez->numCnfClauses());
|
||||
|
||||
if (qcsat.ez->solve(sat_model, sat_model_values)) {
|
||||
log(" According to the SAT solver this pair of cells can not be shared.\n");
|
||||
|
|
Loading…
Reference in New Issue