summaryrefslogtreecommitdiffstats
path: root/src/proof
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2013-09-05 20:40:50 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2013-09-05 20:40:50 -0700
commit23879f92000601db485d2ea226711df88c6266b9 (patch)
tree6c8ffe04300dbbcae032cda66e372b40cef7c721 /src/proof
parent9d14b0c094cc0509bf167166e6fbddeb0f8ba954 (diff)
downloadabc-23879f92000601db485d2ea226711df88c6266b9.tar.gz
abc-23879f92000601db485d2ea226711df88c6266b9.tar.bz2
abc-23879f92000601db485d2ea226711df88c6266b9.zip
Unifying parameters for the &ps command.
Diffstat (limited to 'src/proof')
-rw-r--r--src/proof/abs/absRpmOld.c10
-rw-r--r--src/proof/cec/cecCore.c2
-rw-r--r--src/proof/ssc/sscCore.c4
-rw-r--r--src/proof/ssc/sscUtil.c6
4 files changed, 11 insertions, 11 deletions
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;
}
diff --git a/src/proof/cec/cecCore.c b/src/proof/cec/cecCore.c
index 051a5126..c77b8fa1 100644
--- a/src/proof/cec/cecCore.c
+++ b/src/proof/cec/cecCore.c
@@ -401,7 +401,7 @@ p->timeSim += Abc_Clock() - clk;
// Gia_AigerWrite( pSrm, "gia_srm.aig", 0, 0 );
if ( pPars->fVeryVerbose )
- Gia_ManPrintStats( pSrm, 0, 0, 0 );
+ Gia_ManPrintStats( pSrm, NULL );
if ( Gia_ManCoNum(pSrm) == 0 )
{
Gia_ManStop( pSrm );
diff --git a/src/proof/ssc/sscCore.c b/src/proof/ssc/sscCore.c
index 4c3f98da..d939a19a 100644
--- a/src/proof/ssc/sscCore.c
+++ b/src/proof/ssc/sscCore.c
@@ -385,9 +385,9 @@ Gia_Man_t * Ssc_PerformSweepingConstr( Gia_Man_t * p, Ssc_Pars_t * pPars )
if ( pPars->fVerbose )
{
printf( "User AIG: " );
- Gia_ManPrintStats( pAig, 0, 0, 0 );
+ Gia_ManPrintStats( pAig, NULL );
printf( "Care AIG: " );
- Gia_ManPrintStats( pCare, 0, 0, 0 );
+ Gia_ManPrintStats( pCare, NULL );
}
pAig = Gia_ManDupLevelized( pResult = pAig );
diff --git a/src/proof/ssc/sscUtil.c b/src/proof/ssc/sscUtil.c
index 52aea52c..db7f772b 100644
--- a/src/proof/ssc/sscUtil.c
+++ b/src/proof/ssc/sscUtil.c
@@ -130,10 +130,10 @@ Gia_Man_t * Gia_ManOptimizeRing( Gia_Man_t * p )
int i;
assert( p->nConstrs == 0 );
printf( "User AIG: " );
- Gia_ManPrintStats( p, 0, 0, 0 );
+ Gia_ManPrintStats( p, NULL );
pTemp = Gia_ManDropContained( p );
printf( "Drop AIG: " );
- Gia_ManPrintStats( pTemp, 0, 0, 0 );
+ Gia_ManPrintStats( pTemp, NULL );
// return pTemp;
if ( Gia_ManPoNum(pTemp) == 1 )
return pTemp;
@@ -158,7 +158,7 @@ Gia_Man_t * Gia_ManOptimizeRing( Gia_Man_t * p )
Gia_ManStop( pAux );
// report results
printf( "AIG%3d : ", i );
- Gia_ManPrintStats( pTemp, 0, 0, 0 );
+ Gia_ManPrintStats( pTemp, NULL );
}
pTemp->nConstrs = 0;
return pTemp;