mirror of https://github.com/YosysHQ/abc.git
Updating bmc3 printout to show the number of failed outputs.
This commit is contained in:
parent
cc7d3e3747
commit
d3a4dce10e
|
|
@ -1519,9 +1519,9 @@ clkOther += clock() - clk2;
|
|||
printf( "%4d %s : ", f, fUnfinished ? "-" : "+" );
|
||||
printf( "Var =%8.0f. ", (double)p->nSatVars );
|
||||
printf( "Cla =%9.0f. ", (double)p->pSat->stats.clauses );
|
||||
printf( "Conf =%7.0f. ", (double)p->pSat->stats.conflicts );
|
||||
printf( "Cnf =%7.0f. ", (double)p->pSat->stats.conflicts );
|
||||
// printf( "Imp =%10.0f. ", (double)p->pSat->stats.propagations );
|
||||
printf( "Units =%7.0f. ",(double)sat_solver_count_assigned(p->pSat) );
|
||||
printf( "Uni =%7.0f. ",(double)sat_solver_count_assigned(p->pSat) );
|
||||
// ABC_PRT( "Time", clock() - clk );
|
||||
printf( "%4.0f MB", 4.25*(f+1)*p->nObjNums /(1<<20) );
|
||||
printf( "%4.0f MB", 1.0*sat_solver_memory(p->pSat)/(1<<20) );
|
||||
|
|
@ -1577,9 +1577,11 @@ clkOther += clock() - clk2;
|
|||
printf( "%4d %s : ", f, fUnfinished ? "-" : "+" );
|
||||
printf( "Var =%8.0f. ", (double)p->nSatVars );
|
||||
printf( "Cla =%9.0f. ", (double)p->pSat->stats.clauses );
|
||||
printf( "Conf =%7.0f. ",(double)p->pSat->stats.conflicts );
|
||||
printf( "Cnf =%7.0f. ",(double)p->pSat->stats.conflicts );
|
||||
// printf( "Imp =%10.0f. ", (double)p->pSat->stats.propagations );
|
||||
printf( "Units =%7.0f. ",(double)sat_solver_count_assigned(p->pSat) );
|
||||
printf( "Uni =%7.0f. ",(double)sat_solver_count_assigned(p->pSat) );
|
||||
if ( pPars->fSolveAll )
|
||||
printf( "CEX =%7d. ", pPars->nFailOuts );
|
||||
// ABC_PRT( "Time", clock() - clk );
|
||||
// printf( "%4.0f MB", 4.0*Vec_IntSize(p->vVisited) /(1<<20) );
|
||||
printf( "%4.0f MB", 4.0*(f+1)*p->nObjNums /(1<<20) );
|
||||
|
|
|
|||
Loading…
Reference in New Issue