Commit 679a9a02 by Alan Mishchenko

Integrated buffering and sizing.

parent 6c4252c5
...@@ -434,7 +434,7 @@ void Abc_SclBufSize( Bus_Man_t * p ) ...@@ -434,7 +434,7 @@ void Abc_SclBufSize( Bus_Man_t * p )
Abc_SclObjSetCell( pObj, pCellNew ); Abc_SclObjSetCell( pObj, pCellNew );
if ( p->pPars->fVeryVerbose ) if ( p->pPars->fVeryVerbose )
Abc_SclOneNodePrint( p, pObj ); Abc_SclOneNodePrint( p, pObj );
assert( Abc_ObjFanoutNum(pObj) <= p->pPars->nDegree ); assert( p->pPars->fSizeOnly || Abc_ObjFanoutNum(pObj) <= p->pPars->nDegree );
} }
Abc_NtkForEachCi( p->pNtk, pObj, i ) Abc_NtkForEachCi( p->pNtk, pObj, i )
DeptMax = Abc_MaxFloat( DeptMax, Abc_NtkComputeNodeDeparture(pObj, p->pPars->Slew) ); DeptMax = Abc_MaxFloat( DeptMax, Abc_NtkComputeNodeDeparture(pObj, p->pPars->Slew) );
......
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