place_sa: Tweak weighting given to timing

Signed-off-by: David Shah <davey1576@gmail.com>
This commit is contained in:
David Shah 2018-06-22 15:17:00 +02:00
parent d7939f96e6
commit f86a0d6c8c

View File

@ -355,7 +355,7 @@ class SAPlacer
}
wirelength =
wirelen_t((((ymax - ymin) + (xmax - xmin)) *
std::min(3.0, (1.0 + std::exp(-worst_slack / 10)))));
std::min(5.0, (1.0 + std::exp(-worst_slack / 5)))));
return wirelength;
}