summaryrefslogtreecommitdiffstats
path: root/src/aig/gia/giaMan.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2012-01-13 19:31:13 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2012-01-13 19:31:13 -0800
commit4bd7efa6cda58e3e108b800d72438b707d56dd47 (patch)
treeaf0981c51113fa1c013727f0a93e90b0905e462d /src/aig/gia/giaMan.c
parentedbff75fff4666c6683f448068aa76a59c3de555 (diff)
downloadabc-4bd7efa6cda58e3e108b800d72438b707d56dd47.tar.gz
abc-4bd7efa6cda58e3e108b800d72438b707d56dd47.tar.bz2
abc-4bd7efa6cda58e3e108b800d72438b707d56dd47.zip
Added counting hits and misses during structural hashing.
Diffstat (limited to 'src/aig/gia/giaMan.c')
-rw-r--r--src/aig/gia/giaMan.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/aig/gia/giaMan.c b/src/aig/gia/giaMan.c
index f09ca7b5..d290113f 100644
--- a/src/aig/gia/giaMan.c
+++ b/src/aig/gia/giaMan.c
@@ -70,6 +70,7 @@ Gia_Man_t * Gia_ManStart( int nObjsMax )
***********************************************************************/
void Gia_ManStop( Gia_Man_t * p )
{
+ printf( "Hash table hits = %12u. Hash table misses = %12u.\n", (int)p->nHashHit, (int)p->nHashMiss );
Tim_ManStopP( (Tim_Man_t **)&p->pManTime );
assert( p->pManTime == NULL );
Vec_PtrFreeFree( p->vNamesIn );