diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2005-08-28 08:01:00 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2005-08-28 08:01:00 -0700 |
commit | 3c25decf65704916943b0569e6d0608072550a89 (patch) | |
tree | c4b532e8edd1e2226bc84268e4e2368db8ee295d /src/opt/rwr | |
parent | 28db025b8393e307328d51ff6901c4ebab669e95 (diff) | |
download | abc-3c25decf65704916943b0569e6d0608072550a89.tar.gz abc-3c25decf65704916943b0569e6d0608072550a89.tar.bz2 abc-3c25decf65704916943b0569e6d0608072550a89.zip |
Version abc50828
Diffstat (limited to 'src/opt/rwr')
-rw-r--r-- | src/opt/rwr/rwr.h | 1 | ||||
-rw-r--r-- | src/opt/rwr/rwrMan.c | 21 |
2 files changed, 0 insertions, 22 deletions
diff --git a/src/opt/rwr/rwr.h b/src/opt/rwr/rwr.h index 6e127b27..1c291b33 100644 --- a/src/opt/rwr/rwr.h +++ b/src/opt/rwr/rwr.h @@ -125,7 +125,6 @@ extern void Rwr_ManIncTravId( Rwr_Man_t * p ); extern Rwr_Man_t * Rwr_ManStart( bool fPrecompute ); extern void Rwr_ManStop( Rwr_Man_t * p ); extern void Rwr_ManPrintStats( Rwr_Man_t * p ); -extern void Rwr_ManPrepareNetwork( Rwr_Man_t * p, Abc_Ntk_t * pNtk ); extern Vec_Ptr_t * Rwr_ManReadFanins( Rwr_Man_t * p ); extern Vec_Int_t * Rwr_ManReadDecs( Rwr_Man_t * p ); extern int Rwr_ManReadCompl( Rwr_Man_t * p ); diff --git a/src/opt/rwr/rwrMan.c b/src/opt/rwr/rwrMan.c index 71db4b20..d4772812 100644 --- a/src/opt/rwr/rwrMan.c +++ b/src/opt/rwr/rwrMan.c @@ -164,27 +164,6 @@ void Rwr_ManPrintStats( Rwr_Man_t * p ) /**Function************************************************************* - Synopsis [Assigns elementary cuts to the PIs.] - - Description [] - - SideEffects [] - - SeeAlso [] - -***********************************************************************/ -void Rwr_ManPrepareNetwork( Rwr_Man_t * p, Abc_Ntk_t * pNtk ) -{ - // save the fanout counters for all internal nodes -// p->vFanNums = Rwt_NtkFanoutCounters( pNtk ); - // precompute the required times for all internal nodes -// p->vReqTimes = Abc_NtkGetRequiredLevels( pNtk ); - // start the cut computation -// Rwr_NtkStartCuts( p, pNtk ); -} - -/**Function************************************************************* - Synopsis [Stops the resynthesis manager.] Description [] |