Enabling additional stat printouts.

This commit is contained in:
Alan Mishchenko 2012-12-02 01:44:17 -08:00
parent 4d67a04b19
commit f1749fa594
1 changed files with 2 additions and 0 deletions

View File

@ -731,6 +731,7 @@ p->timeCanon += clock() - clk;
clk = clock();
// add the resulting truth table to the hash table
Index = Vec_MemHashInsert( p->vTtMem, p->pTemp1 );
/*
if ( p->vTruthFreqs == NULL )
p->vTruthFreqs = Vec_IntAlloc( 1000 );
assert( Index <= Vec_IntSize(p->vTruthFreqs) );
@ -738,6 +739,7 @@ clk = clock();
Vec_IntAddToEntry( p->vTruthFreqs, Index, 1 );
else
Vec_IntPush( p->vTruthFreqs, 1 );
*/
p->nAdded++;
p->timeInsert += clock() - clk;
return 1;