aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-08-03 10:31:03 +0200
committerDavid Shah <davey1576@gmail.com>2018-08-03 13:18:48 +0200
commit26c68c4bcc388d49142e2c59d252abdd5daf4ec5 (patch)
tree808f53cbaa603fbed0532668723922df363de0f6 /common
parent80e6b17ec9da25ff089a626b2fb5043876814307 (diff)
downloadnextpnr-26c68c4bcc388d49142e2c59d252abdd5daf4ec5.tar.gz
nextpnr-26c68c4bcc388d49142e2c59d252abdd5daf4ec5.tar.bz2
nextpnr-26c68c4bcc388d49142e2c59d252abdd5daf4ec5.zip
Remove old place legaliser, set placement constraints instead (currently ignored by placer)
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'common')
-rw-r--r--common/placer1.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/placer1.cc b/common/placer1.cc
index fc679b50..3a25f42c 100644
--- a/common/placer1.cc
+++ b/common/placer1.cc
@@ -38,7 +38,6 @@
#include <vector>
#include "log.h"
#include "place_common.h"
-#include "place_legaliser.h"
#include "timing.h"
#include "util.h"
NEXTPNR_NAMESPACE_BEGIN
@@ -225,7 +224,8 @@ class SAPlacer
// Once cooled below legalise threshold, run legalisation and start requiring
// legal moves only
if (temp < legalise_temp && !require_legal) {
- legalise_design(ctx);
+ // legalise_design(ctx);
+ // FIXME
require_legal = true;
autoplaced.clear();
for (auto cell : sorted(ctx->cells)) {