mirror of https://github.com/YosysHQ/abc.git
Enables printout of fanout count in critical path.
This commit is contained in:
parent
da0e1a3006
commit
f416e84965
|
|
@ -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" );
|
||||
|
|
|
|||
Loading…
Reference in New Issue