Adding dumping abstractions in &vta.

This commit is contained in:
Alan Mishchenko 2012-04-15 14:51:06 -07:00
parent 5c683fc164
commit 3f6bb881c0
1 changed files with 5 additions and 2 deletions

View File

@ -1602,9 +1602,12 @@ int Gia_VtaPerformInt( Gia_Man_t * pAig, Gia_ParVta_t * pPars )
Gia_VtaSendAbsracted( p, pPars->fVerbose );
fOneIsSent = 1;
// dump the model
if ( p->pPars->fDumpVabs )
Gia_VtaDumpAbsracted( p, pPars->fVerbose );
// if ( p->pPars->fDumpVabs )
// Gia_VtaDumpAbsracted( p, pPars->fVerbose );
}
// dump the model
if ( p->pPars->fDumpVabs && (f & 1) )
Gia_VtaDumpAbsracted( p, pPars->fVerbose );
// check if the number of objects is below limit
if ( p->nSeenGla >= Gia_ManCandNum(pAig) * (100-pPars->nRatioMin) / 100 )
{