mirror of https://github.com/YosysHQ/abc.git
Improving print-out in gate-sizing.
This commit is contained in:
parent
a38861babf
commit
caa66f0ca9
|
|
@ -84,8 +84,9 @@ Abc_Obj_t * Abc_SclFindMostCriticalFanin( SC_Man * p, int * pfRise, Abc_Obj_t *
|
||||||
***********************************************************************/
|
***********************************************************************/
|
||||||
static inline void Abc_SclTimeGatePrint( SC_Man * p, Abc_Obj_t * pObj, int fRise )
|
static inline void Abc_SclTimeGatePrint( SC_Man * p, Abc_Obj_t * pObj, int fRise )
|
||||||
{
|
{
|
||||||
printf( "%5d : ", Abc_ObjId(pObj) );
|
printf( "%7d : ", Abc_ObjId(pObj) );
|
||||||
printf( "%-10s ", Abc_SclObjCell(p, pObj)->pName );
|
printf( "%d ", Abc_ObjFaninNum(pObj) );
|
||||||
|
printf( "%-12s ", Abc_SclObjCell(p, pObj)->pName );
|
||||||
if ( fRise >= 0 )
|
if ( fRise >= 0 )
|
||||||
printf( "(%s) ", fRise ? "rise" : "fall" );
|
printf( "(%s) ", fRise ? "rise" : "fall" );
|
||||||
printf( "delay = (" );
|
printf( "delay = (" );
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue