Commit 7c8e1b8d by Alan Mishchenko

Fixed printout of in the hierarchy log file.

parent 43ec3fd8
...@@ -2752,7 +2752,7 @@ void Ver_ParsePrintLog( Ver_Man_t * pMan ) ...@@ -2752,7 +2752,7 @@ void Ver_ParsePrintLog( Ver_Man_t * pMan )
fprintf( pFile, " instantiated %6d times ", pNtk->fHieVisited ); fprintf( pFile, " instantiated %6d times ", pNtk->fHieVisited );
// fprintf( pFile, "\n " ); // fprintf( pFile, "\n " );
fprintf( pFile, " pi = %4d", Abc_NtkPiNum(pNtk) ); fprintf( pFile, " pi = %4d", Abc_NtkPiNum(pNtk) );
fprintf( pFile, " po = %4d", Abc_NtkPiNum(pNtk) ); fprintf( pFile, " po = %4d", Abc_NtkPoNum(pNtk) );
fprintf( pFile, " nd = %8d", Abc_NtkNodeNum(pNtk) ); fprintf( pFile, " nd = %8d", Abc_NtkNodeNum(pNtk) );
fprintf( pFile, " lat = %6d", Abc_NtkLatchNum(pNtk) ); fprintf( pFile, " lat = %6d", Abc_NtkLatchNum(pNtk) );
fprintf( pFile, " box = %6d", Abc_NtkBoxNum(pNtk)-Abc_NtkLatchNum(pNtk) ); fprintf( pFile, " box = %6d", Abc_NtkBoxNum(pNtk)-Abc_NtkLatchNum(pNtk) );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment