diff options
Diffstat (limited to 'dummy/chip.cc')
-rw-r--r-- | dummy/chip.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dummy/chip.cc b/dummy/chip.cc index d9543643..965517fe 100644 --- a/dummy/chip.cc +++ b/dummy/chip.cc @@ -141,14 +141,14 @@ const std::vector<PipId> &Chip::getWireAliases(WireId wire) const // --------------------------------------------------------------- -bool Chip::estimatePosition(BelId bel, float &x, float &y) const +bool Chip::estimatePosition(BelId bel, int &x, int &y) const { x = 0.0; y = 0.0; return false; } -float Chip::estimateDelay(WireId src, WireId dst) const { return 0.0; } +delay_t Chip::estimateDelay(WireId src, WireId dst) const { return 0.0; } // --------------------------------------------------------------- |