Improvements to the new abstraction code.

This commit is contained in:
Alan Mishchenko 2011-10-27 14:23:43 -07:00
parent bc81cf2dae
commit 0ff0a552a5
1 changed files with 2 additions and 2 deletions

View File

@ -315,8 +315,8 @@ int Aig_Gla2CreateSatSolver( Aig_Gla2Man_t * p )
sat_solver_store_mark_roots( p->pSat );
if ( p->fVerbose )
printf( "The resulting SAT problem contains %d vars, %d clauses, and %d literals.\n",
p->pSat->size, p->pSat->stats.clauses, p->pSat->stats.tot_literals );
printf( "The resulting SAT problem contains %d variables and %d clauses.\n",
p->pSat->size, p->pSat->stats.clauses );
return RetValue;
}