diff options
Diffstat (limited to 'nexus')
-rw-r--r-- | nexus/arch.cc | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/nexus/arch.cc b/nexus/arch.cc index 187e5312..4818906d 100644 --- a/nexus/arch.cc +++ b/nexus/arch.cc @@ -1122,18 +1122,9 @@ bool Arch::getClusterPlacement(ClusterId cluster, BelId root_bel, // ----------------------------------------------------------------------- -#ifdef WITH_HEAP const std::string Arch::defaultPlacer = "heap"; -#else -const std::string Arch::defaultPlacer = "sa"; -#endif -const std::vector<std::string> Arch::availablePlacers = {"sa", -#ifdef WITH_HEAP - "heap" -#endif - -}; +const std::vector<std::string> Arch::availablePlacers = {"sa", "heap"}; const std::string Arch::defaultRouter = "router2"; const std::vector<std::string> Arch::availableRouters = {"router1", "router2"}; |