Commit 71d7c9e6 by Alan Mishchenko

Disable printing refinement statistics by default.

parent 56117d56
...@@ -1104,7 +1104,7 @@ void Gla_ManStop( Gla_Man_t * p ) ...@@ -1104,7 +1104,7 @@ void Gla_ManStop( Gla_Man_t * p )
// stop the refinement manager // stop the refinement manager
// Gia_ManStopP( &p->pGia2 ); // Gia_ManStopP( &p->pGia2 );
Rnm_ManStop( p->pRnm, 1 ); Rnm_ManStop( p->pRnm, 0 );
if ( p->pvRefis ) if ( p->pvRefis )
for ( i = 0; i < Gia_ManObjNum(p->pGia); i++ ) for ( i = 0; i < Gia_ManObjNum(p->pGia); i++ )
......
...@@ -458,7 +458,7 @@ void Ga2_ManStop( Ga2_Man_t * p ) ...@@ -458,7 +458,7 @@ void Ga2_ManStop( Ga2_Man_t * p )
Vec_IntFree( p->vValues ); Vec_IntFree( p->vValues );
Vec_IntFree( p->vLits ); Vec_IntFree( p->vLits );
Vec_IntFree( p->vIsopMem ); Vec_IntFree( p->vIsopMem );
Rnm_ManStop( p->pRnm, p->pPars->fVerbose ); Rnm_ManStop( p->pRnm, 0 );
// Rf2_ManStop( p->pRf2, p->pPars->fVerbose ); // Rf2_ManStop( p->pRf2, p->pPars->fVerbose );
ABC_FREE( p->pTable ); ABC_FREE( p->pTable );
ABC_FREE( p->pSopSizes ); ABC_FREE( p->pSopSizes );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment