mirror of
https://github.com/YosysHQ/abc.git
synced 2026-09-02 10:47:31 +02:00
Made print-out of frontier cut an option ('-c') in '&ps'.
This commit is contained in:
@@ -147,7 +147,7 @@ Gia_Man_t * Abs_RpmPerformOld( Gia_Man_t * p, int fVerbose )
|
||||
if ( fVerbose )
|
||||
{
|
||||
printf( "Original AIG:\n" );
|
||||
Gia_ManPrintStats( p, 0, 0 );
|
||||
Gia_ManPrintStats( p, 0, 0, 0 );
|
||||
}
|
||||
|
||||
// perform input trimming
|
||||
@@ -155,7 +155,7 @@ Gia_Man_t * Abs_RpmPerformOld( Gia_Man_t * p, int fVerbose )
|
||||
if ( fVerbose )
|
||||
{
|
||||
printf( "After PI trimming:\n" );
|
||||
Gia_ManPrintStats( pNew, 0, 0 );
|
||||
Gia_ManPrintStats( pNew, 0, 0, 0 );
|
||||
}
|
||||
// transform GIA
|
||||
pNew = Gia_ManDupIn2Ff( pTmp = pNew );
|
||||
@@ -163,7 +163,7 @@ Gia_Man_t * Abs_RpmPerformOld( Gia_Man_t * p, int fVerbose )
|
||||
if ( fVerbose )
|
||||
{
|
||||
printf( "After PI-2-FF transformation:\n" );
|
||||
Gia_ManPrintStats( pNew, 0, 0 );
|
||||
Gia_ManPrintStats( pNew, 0, 0, 0 );
|
||||
}
|
||||
|
||||
// derive AIG
|
||||
@@ -178,7 +178,7 @@ Gia_Man_t * Abs_RpmPerformOld( Gia_Man_t * p, int fVerbose )
|
||||
if ( fVerbose )
|
||||
{
|
||||
printf( "After min-area retiming:\n" );
|
||||
Gia_ManPrintStats( pNew, 0, 0 );
|
||||
Gia_ManPrintStats( pNew, 0, 0, 0 );
|
||||
}
|
||||
|
||||
// transform back
|
||||
@@ -187,7 +187,7 @@ Gia_Man_t * Abs_RpmPerformOld( Gia_Man_t * p, int fVerbose )
|
||||
if ( fVerbose )
|
||||
{
|
||||
printf( "After FF-2-PI tranformation:\n" );
|
||||
Gia_ManPrintStats( pNew, 0, 0 );
|
||||
Gia_ManPrintStats( pNew, 0, 0, 0 );
|
||||
}
|
||||
return pNew;
|
||||
}
|
||||
|
||||
@@ -401,7 +401,7 @@ p->timeSim += clock() - clk;
|
||||
// Gia_WriteAiger( pSrm, "gia_srm.aig", 0, 0 );
|
||||
|
||||
if ( pPars->fVeryVerbose )
|
||||
Gia_ManPrintStats( pSrm, 0, 0 );
|
||||
Gia_ManPrintStats( pSrm, 0, 0, 0 );
|
||||
if ( Gia_ManCoNum(pSrm) == 0 )
|
||||
{
|
||||
Gia_ManStop( pSrm );
|
||||
|
||||
Reference in New Issue
Block a user