diff options
author | David Shah <davey1576@gmail.com> | 2018-06-22 15:03:33 +0200 |
---|---|---|
committer | David Shah <davey1576@gmail.com> | 2018-06-22 15:03:33 +0200 |
commit | d7939f96e6da6eeaffe2d2851f233d32bfb5d6cd (patch) | |
tree | de6839b7135747866987c2751857f493e972cb32 | |
parent | ce4ad44fd1837242324ca110a9058182eef99dcd (diff) | |
download | nextpnr-d7939f96e6da6eeaffe2d2851f233d32bfb5d6cd.tar.gz nextpnr-d7939f96e6da6eeaffe2d2851f233d32bfb5d6cd.tar.bz2 nextpnr-d7939f96e6da6eeaffe2d2851f233d32bfb5d6cd.zip |
place_sa: Fix temp printing
Signed-off-by: David Shah <davey1576@gmail.com>
-rw-r--r-- | common/place_sa.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/place_sa.cc b/common/place_sa.cc index 11f46ad9..8b111c6c 100644 --- a/common/place_sa.cc +++ b/common/place_sa.cc @@ -163,7 +163,7 @@ class SAPlacer improved = false; if (iter % 5 == 0 || iter == 1) - log_info(" at iteration #%d: temp = %.02f, wire length = " + log_info(" at iteration #%d: temp = %f, wire length = " "%.0f, est tns = %.02fns\n", iter, temp, double(curr_wirelength), curr_tns); |