aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorLofty <dan.ravensloft@gmail.com>2021-10-09 20:48:31 +0100
committerLofty <dan.ravensloft@gmail.com>2021-10-10 23:56:58 +0100
commit0a0c9393c1277b2e175d348fb4aca2a4d73ad61c (patch)
tree0fec85535cb1a2abe5dda75409512e7e28afcfc4 /common
parentb749ef5f563fa9d099b158c2e493e8734558a327 (diff)
downloadnextpnr-0a0c9393c1277b2e175d348fb4aca2a4d73ad61c.tar.gz
nextpnr-0a0c9393c1277b2e175d348fb4aca2a4d73ad61c.tar.bz2
nextpnr-0a0c9393c1277b2e175d348fb4aca2a4d73ad61c.zip
mistral: very basic timing info
Diffstat (limited to 'common')
-rw-r--r--common/router2.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/router2.cc b/common/router2.cc
index 813249b4..b93e7b35 100644
--- a/common/router2.cc
+++ b/common/router2.cc
@@ -1378,7 +1378,7 @@ struct Router2
do {
ctx->sorted_shuffle(route_queue);
- if (timing_driven) {
+ if (timing_driven && int(route_queue.size()) >= 30) {
for (auto n : route_queue) {
NetInfo *ni = nets_by_udata.at(n);
auto &net = nets.at(n);