Enables printout of fanout count in critical path.

This commit is contained in:
Alan Mishchenko 2012-10-26 16:32:04 -07:00
parent da0e1a3006
commit f416e84965
1 changed files with 1 additions and 0 deletions

View File

@ -109,6 +109,7 @@ static inline void Abc_SclTimeNodePrint( SC_Man * p, Abc_Obj_t * pObj, int fRise
{
printf( "%7d : ", Abc_ObjId(pObj) );
printf( "%d ", Abc_ObjFaninNum(pObj) );
printf( "%d ", Abc_ObjFanoutNum(pObj) );
printf( "%-*s ", Length, Abc_SclObjCell(p, pObj)->pName );
if ( fRise >= 0 )
printf( "(%s) ", fRise ? "rise" : "fall" );