diff options
author | YRabbit <rabbit@yrabbit.cyou> | 2021-09-07 09:18:28 +1000 |
---|---|---|
committer | YRabbit <rabbit@yrabbit.cyou> | 2021-09-07 09:18:28 +1000 |
commit | 9368671ca9e5892f4a02e0c18ddcb2cdb62cea5c (patch) | |
tree | 605d985c1e223b9dc0dae703a9f03feb6028237c /common | |
parent | d6fdd6c7cec607c8270968157dac50c1259993fb (diff) | |
parent | d4a14a0d04109f79f0944d6753b30dceba4dd2ab (diff) | |
download | nextpnr-9368671ca9e5892f4a02e0c18ddcb2cdb62cea5c.tar.gz nextpnr-9368671ca9e5892f4a02e0c18ddcb2cdb62cea5c.tar.bz2 nextpnr-9368671ca9e5892f4a02e0c18ddcb2cdb62cea5c.zip |
Merge branch 'master' into extend-placement
Diffstat (limited to 'common')
-rw-r--r-- | common/router2.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/common/router2.cc b/common/router2.cc index 878b615e..1f9196ab 100644 --- a/common/router2.cc +++ b/common/router2.cc @@ -92,7 +92,7 @@ struct Router2 int16_t x = 0, y = 0; // Visit data PipId pip_fwd, pip_bwd; - bool visited_fwd, visited_bwd; + bool visited_fwd = false, visited_bwd = false; }; Context *ctx; @@ -687,6 +687,7 @@ struct Router2 // Explore forwards auto curr = t.fwd_queue.top(); t.fwd_queue.pop(); + ++explored; if (was_visited_bwd(curr.wire)) { // Meet in the middle; done midpoint_wire = curr.wire; @@ -729,6 +730,7 @@ struct Router2 // Explore backwards auto curr = t.bwd_queue.top(); t.bwd_queue.pop(); + ++explored; if (was_visited_fwd(curr.wire)) { // Meet in the middle; done midpoint_wire = curr.wire; |