mirror of
https://github.com/The-OpenROAD-Project/OpenSTA.git
synced 2026-08-29 09:20:19 +02:00
Merge pull request #276 from povik/no-spurious-levelize
Avoid spurious clean slate levelization
This commit is contained in:
+2
-1
@@ -26,6 +26,7 @@
|
||||
|
||||
#include <algorithm>
|
||||
#include <deque>
|
||||
#include <limits>
|
||||
|
||||
#include "Report.hh"
|
||||
#include "Debug.hh"
|
||||
@@ -51,7 +52,7 @@ Levelize::Levelize(StaState *sta) :
|
||||
levels_valid_(false),
|
||||
max_level_(0),
|
||||
level_space_(10),
|
||||
max_incremental_level_(100),
|
||||
max_incremental_level_(std::numeric_limits<size_t>::max()),
|
||||
roots_(graph_),
|
||||
relevelize_from_(graph_),
|
||||
observer_(nullptr)
|
||||
|
||||
Reference in New Issue
Block a user