Commit 3bad7aed by Alan Mishchenko

Producing AIG after structural mapping.

parent e48cfd92
...@@ -1517,8 +1517,11 @@ Gia_Man_t * Jf_ManDeriveGia( Jf_Man_t * p ) ...@@ -1517,8 +1517,11 @@ Gia_Man_t * Jf_ManDeriveGia( Jf_Man_t * p )
Gia_ManSetRegNum( pNew, Gia_ManRegNum(p->pGia) ); Gia_ManSetRegNum( pNew, Gia_ManRegNum(p->pGia) );
// Dsm_ManReportStats(); // Dsm_ManReportStats();
// perform cleanup // perform cleanup
pNew = Gia_ManCleanup( pTemp = pNew ); if ( !p->pPars->fCutMin )
Gia_ManStop( pTemp ); {
pNew = Gia_ManCleanup( pTemp = pNew );
Gia_ManStop( pTemp );
}
return pNew; return pNew;
} }
......
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