diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2013-05-17 12:05:28 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2013-05-17 12:05:28 -0700 |
commit | e04ded5640c3383294f5269228404e44651f39b6 (patch) | |
tree | 821d4849488897bbf310ae85a0b0424fc49043ea /src/aig/gia/giaMan.c | |
parent | 760c1f60d2dc0f980053e666b53dfb7390f85823 (diff) | |
download | abc-e04ded5640c3383294f5269228404e44651f39b6.tar.gz abc-e04ded5640c3383294f5269228404e44651f39b6.tar.bz2 abc-e04ded5640c3383294f5269228404e44651f39b6.zip |
Undoing commit from Nov 12, 2012: Extending GIA to represent pintypes and pins.
Diffstat (limited to 'src/aig/gia/giaMan.c')
-rw-r--r-- | src/aig/gia/giaMan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/aig/gia/giaMan.c b/src/aig/gia/giaMan.c index 587680c8..823941a8 100644 --- a/src/aig/gia/giaMan.c +++ b/src/aig/gia/giaMan.c @@ -311,7 +311,7 @@ void Gia_ManPrintStats( Gia_Man_t * p, int fTents, int fSwitch, int fCut ) printf( " ff =%7d", Gia_ManRegNum(p) ); printf( " and =%8d", Gia_ManAndNum(p) ); printf( " lev =%5d", Gia_ManLevelNum(p) ); Vec_IntFreeP( &p->vLevels ); - if ( fCut && p->nPinTypes == 0 ) + if ( fCut ) printf( " cut = %d(%d)", Gia_ManCrossCut(p, 0), Gia_ManCrossCut(p, 1) ); // printf( " mem =%5.2f MB", 1.0*(sizeof(Gia_Obj_t)*p->nObjs + sizeof(int)*(Vec_IntSize(p->vCis) + Vec_IntSize(p->vCos)))/(1<<20) ); printf( " mem =%5.2f MB", 1.0*(sizeof(Gia_Obj_t)*p->nObjsAlloc + sizeof(int)*(Vec_IntCap(p->vCis) + Vec_IntCap(p->vCos)))/(1<<20) ); |