summaryrefslogtreecommitdiffstats
path: root/src/aig/gia/giaCof.c
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/aig/gia/giaCof.c
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/aig/gia/giaCof.c')
-rw-r--r--src/aig/gia/giaCof.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/aig/gia/giaCof.c b/src/aig/gia/giaCof.c
index e9fd6c8b..522589aa 100644
--- a/src/aig/gia/giaCof.c
+++ b/src/aig/gia/giaCof.c
@@ -863,7 +863,7 @@ Gia_Man_t * Gia_ManDupCofAllInt( Gia_Man_t * p, Vec_Int_t * vSigs, int fVerbose
if ( fVerbose )
{
printf( "Cofactoring %d signals.\n", Vec_IntSize(vSigs) );
- Gia_ManPrintStats( p, 0, 0 );
+ Gia_ManPrintStats( p, 0, 0, 0 );
}
if ( Vec_IntSize( vSigs ) > 200 )
{
@@ -889,7 +889,7 @@ Gia_Man_t * Gia_ManDupCofAllInt( Gia_Man_t * p, Vec_Int_t * vSigs, int fVerbose
if ( fVerbose )
printf( "Cofactored variable %d.\n", iVar );
if ( fVerbose )
- Gia_ManPrintStats( pAig, 0, 0 );
+ Gia_ManPrintStats( pAig, 0, 0, 0 );
}
Vec_IntFree( vSigsNew );
return pAig;