aboutsummaryrefslogtreecommitdiffstats
path: root/dummy/arch.cc
diff options
context:
space:
mode:
Diffstat (limited to 'dummy/arch.cc')
-rw-r--r--dummy/arch.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/dummy/arch.cc b/dummy/arch.cc
index fb54c74f..58298c4e 100644
--- a/dummy/arch.cc
+++ b/dummy/arch.cc
@@ -141,11 +141,11 @@ const std::vector<PipId> &Arch::getWireAliases(WireId wire) const
// ---------------------------------------------------------------
-bool Arch::estimatePosition(BelId bel, int &x, int &y) const
+void Arch::estimatePosition(BelId bel, int &x, int &y, bool &gb) const
{
- x = 0.0;
- y = 0.0;
- return false;
+ x = 0;
+ y = 0;
+ gb = false;
}
delay_t Arch::estimateDelay(WireId src, WireId dst) const { return 0.0; }