summaryrefslogtreecommitdiffstats
path: root/src/proof/abs
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2012-11-12 14:08:10 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2012-11-12 14:08:10 -0800
commit30b8c3d4225d66f2eca70513c0f7cd0e00a76159 (patch)
tree4c11529066945868b12b00071fe656caaec70a06 /src/proof/abs
parent566c7d715273dc7527440d96989ca5ecc4648b97 (diff)
downloadabc-30b8c3d4225d66f2eca70513c0f7cd0e00a76159.tar.gz
abc-30b8c3d4225d66f2eca70513c0f7cd0e00a76159.tar.bz2
abc-30b8c3d4225d66f2eca70513c0f7cd0e00a76159.zip
Made print-out of frontier cut an option ('-c') in '&ps'.
Diffstat (limited to 'src/proof/abs')
-rw-r--r--src/proof/abs/absRpmOld.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/proof/abs/absRpmOld.c b/src/proof/abs/absRpmOld.c
index 362df8de..fd90ae01 100644
--- a/src/proof/abs/absRpmOld.c
+++ b/src/proof/abs/absRpmOld.c
@@ -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;
}