diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2012-10-09 11:21:36 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2012-10-09 11:21:36 -0700 |
commit | 74cc0ad5e6ff9ebdc9da6d4e63b6da8b20e03a06 (patch) | |
tree | cde480c52c79a9bf900495931c7905f2c009d7f1 | |
parent | e3116600782bcbb0a4a5efebd743ca9a5de04f6c (diff) | |
download | abc-74cc0ad5e6ff9ebdc9da6d4e63b6da8b20e03a06.tar.gz abc-74cc0ad5e6ff9ebdc9da6d4e63b6da8b20e03a06.tar.bz2 abc-74cc0ad5e6ff9ebdc9da6d4e63b6da8b20e03a06.zip |
Improvements to gate sizing.
-rw-r--r-- | src/map/scl/sclUpsize.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/scl/sclUpsize.c b/src/map/scl/sclUpsize.c index 5fbbe819..eb2b8b82 100644 --- a/src/map/scl/sclUpsize.c +++ b/src/map/scl/sclUpsize.c @@ -455,8 +455,8 @@ void Abc_SclUpsizePrint( SC_Man * p, int Iter, int win, int nPathPos, int nPathN void Abc_SclUpsizePerform( SC_Lib * pLib, Abc_Ntk_t * pNtk, int nIters, int Window, int Ratio, int Notches, int TimeOut, int fDumpStats, int fVerbose, int fVeryVerbose ) { SC_Man * p; - Vec_Int_t * vPathPos; // critical POs - Vec_Int_t * vPathNodes; // critical nodes and PIs + Vec_Int_t * vPathPos = NULL; // critical POs + Vec_Int_t * vPathNodes = NULL; // critical nodes and PIs Vec_Int_t * vTFO; int i, win, nUpsizes = -1; int nAllPos, nAllNodes, nAllTfos, nAllUpsizes; |