Improvements to word-level network package.

This commit is contained in:
Alan Mishchenko 2014-11-14 20:38:13 -08:00
parent 98c5668d4b
commit d9ffe9c3ad
1 changed files with 2 additions and 2 deletions

View File

@ -382,13 +382,13 @@ void Wlc_NtkPrintStats( Wlc_Ntk_t * p, int fDistrib, int fVerbose )
printf( "Obj = %6d ", Wlc_NtkObjNum(p) );
printf( "Mem = %.3f MB", 1.0*Wlc_NtkMemUsage(p)/(1<<20) );
printf( "\n" );
if ( !fVerbose )
return;
if ( fDistrib )
{
Wlc_NtkPrintDistrib( p, fVerbose );
return;
}
if ( !fVerbose )
return;
printf( "Node type statistics:\n" );
for ( i = 1; i < WLC_OBJ_NUMBER; i++ )
{