aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5/arch.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ecp5/arch.cc')
-rw-r--r--ecp5/arch.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/ecp5/arch.cc b/ecp5/arch.cc
index 55fe5704..88b5e4d4 100644
--- a/ecp5/arch.cc
+++ b/ecp5/arch.cc
@@ -413,6 +413,11 @@ delay_t Arch::estimateDelay(WireId src, WireId dst) const
return 200 * (abs(src.location.x - dst.location.x) + abs(src.location.y - dst.location.y));
}
+delay_t Arch::predictDelay(WireId src, WireId dst) const
+{
+ return 200 * (abs(src.location.x - dst.location.x) + abs(src.location.y - dst.location.y));
+}
+
// -----------------------------------------------------------------------
bool Arch::place() { return placer1(getCtx()); }