aboutsummaryrefslogtreecommitdiffstats
path: root/dummy/chip.h
diff options
context:
space:
mode:
Diffstat (limited to 'dummy/chip.h')
-rw-r--r--dummy/chip.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/dummy/chip.h b/dummy/chip.h
index e5a6dd56..bc70fa5d 100644
--- a/dummy/chip.h
+++ b/dummy/chip.h
@@ -42,6 +42,11 @@ struct DelayInfo
}
};
+struct PosInfo
+{
+ float x = 0, y = 0;
+};
+
typedef IdString BelType;
typedef IdString PortPin;
@@ -108,9 +113,10 @@ struct Chip
const std::vector<PipId> &getPipsUphill(WireId wire) const;
const std::vector<PipId> &getWireAliases(WireId wire) const;
- void getBelPosition(BelId bel, float &x, float &y) const;
- void getWirePosition(WireId wire, float &x, float &y) const;
- void getPipPosition(PipId pip, float &x, float &y) const;
+ PosInfo getBelPosition(BelId bel) const;
+ PosInfo getWirePosition(WireId wire) const;
+ PosInfo getPipPosition(PipId pip) const;
+ float estimateDelay(PosInfo src, PosInfo dst) const;
std::vector<GraphicElement> getBelGraphics(BelId bel) const;
std::vector<GraphicElement> getWireGraphics(WireId wire) const;