diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/place/placer_heap.cc | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/common/place/placer_heap.cc b/common/place/placer_heap.cc index 2958405f..1ed71426 100644 --- a/common/place/placer_heap.cc +++ b/common/place/placer_heap.cc @@ -31,8 +31,6 @@ * - To make the placer timing-driven, the bound2bound weights are multiplied by (1 + 10 * crit^2) */ -#ifdef WITH_HEAP - #include "placer_heap.h" #include <Eigen/Core> #include <Eigen/IterativeLinearSolvers> @@ -1842,22 +1840,3 @@ PlacerHeapCfg::PlacerHeapCfg(Context *ctx) } NEXTPNR_NAMESPACE_END - -#else - -#include "log.h" -#include "nextpnr.h" -#include "placer_heap.h" - -NEXTPNR_NAMESPACE_BEGIN -bool placer_heap(Context *ctx, PlacerHeapCfg cfg) -{ - log_error("nextpnr was built without the HeAP placer\n"); - return false; -} - -PlacerHeapCfg::PlacerHeapCfg(Context *ctx) {} - -NEXTPNR_NAMESPACE_END - -#endif |