Producing AIG after structural mapping.

This commit is contained in:
Alan Mishchenko 2013-09-30 20:41:08 -07:00
parent e48cfd92ee
commit 3bad7aedf8
1 changed files with 5 additions and 2 deletions

View File

@ -1517,8 +1517,11 @@ Gia_Man_t * Jf_ManDeriveGia( Jf_Man_t * p )
Gia_ManSetRegNum( pNew, Gia_ManRegNum(p->pGia) );
// Dsm_ManReportStats();
// perform cleanup
pNew = Gia_ManCleanup( pTemp = pNew );
Gia_ManStop( pTemp );
if ( !p->pPars->fCutMin )
{
pNew = Gia_ManCleanup( pTemp = pNew );
Gia_ManStop( pTemp );
}
return pNew;
}