diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2008-03-07 08:01:00 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2008-03-07 08:01:00 -0800 |
commit | 8eeecc517568a1bd2a6f8379f81303a7c7c57d1b (patch) | |
tree | be2da1197a32d1fd38f9ede9370d50ba64cbb56a /src/base/abci/abcDelay.c | |
parent | 8bd19a27bf2f50b7502d01bbbbe71714c154cd2f (diff) | |
download | abc-8eeecc517568a1bd2a6f8379f81303a7c7c57d1b.tar.gz abc-8eeecc517568a1bd2a6f8379f81303a7c7c57d1b.tar.bz2 abc-8eeecc517568a1bd2a6f8379f81303a7c7c57d1b.zip |
Version abc80307
Diffstat (limited to 'src/base/abci/abcDelay.c')
-rw-r--r-- | src/base/abci/abcDelay.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/abci/abcDelay.c b/src/base/abci/abcDelay.c index bb654b73..67e051f3 100644 --- a/src/base/abci/abcDelay.c +++ b/src/base/abci/abcDelay.c @@ -33,11 +33,12 @@ static inline void Abc_ObjSetArrival( Abc_Obj_t * pNode, float Time ) { pNode- static inline void Abc_ObjSetRequired( Abc_Obj_t * pNode, float Time ) { pNode->pNtk->pLutTimes[3*pNode->Id+1] = Time; } static inline void Abc_ObjSetSlack( Abc_Obj_t * pNode, float Time ) { pNode->pNtk->pLutTimes[3*pNode->Id+2] = Time; } +extern void * Abc_FrameReadLibLut(); + //////////////////////////////////////////////////////////////////////// /// FUNCTION DEFINITIONS /// //////////////////////////////////////////////////////////////////////// - /**Function************************************************************* Synopsis [Sorts the pins in the decreasing order of delays.] @@ -95,7 +96,6 @@ void Abc_NtkDelayTraceSortPins( Abc_Obj_t * pNode, int * pPinPerm, float * pPinD ***********************************************************************/ float Abc_NtkDelayTraceLut( Abc_Ntk_t * pNtk, int fUseLutLib ) { - extern void * Abc_FrameReadLibLut(); int fUseSorting = 0; int pPinPerm[32]; float pPinDelays[32]; |