From 23879f92000601db485d2ea226711df88c6266b9 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Thu, 5 Sep 2013 20:40:50 -0700 Subject: Unifying parameters for the &ps command. --- src/proof/abs/absRpmOld.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/proof/abs/absRpmOld.c') diff --git a/src/proof/abs/absRpmOld.c b/src/proof/abs/absRpmOld.c index acf664a8..fd5e8255 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, 0 ); + Gia_ManPrintStats( p, NULL ); } // 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, 0 ); + Gia_ManPrintStats( pNew, NULL ); } // 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, 0 ); + Gia_ManPrintStats( pNew, NULL ); } // 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, 0 ); + Gia_ManPrintStats( pNew, NULL ); } // 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, 0 ); + Gia_ManPrintStats( pNew, NULL ); } return pNew; } -- cgit v1.2.3