machxo2: Set Pip and Wire delays to reasonable fake values mirroring

estimateDelay.
This commit is contained in:
William D. Jones 2021-02-22 21:52:39 -05:00
parent 86bc708299
commit b1f25d4b33

View File

@ -514,7 +514,7 @@ struct Arch : BaseArch<ArchRanges>
return IdStringList(ids); return IdStringList(ids);
} }
DelayQuad getWireDelay(WireId wire) const override { return DelayQuad(0); } DelayQuad getWireDelay(WireId wire) const override { return DelayQuad(0.01); }
WireRange getWires() const override WireRange getWires() const override
{ {
@ -587,7 +587,7 @@ struct Arch : BaseArch<ArchRanges>
return wire; return wire;
} }
DelayQuad getPipDelay(PipId pip) const override { return DelayQuad(0); } DelayQuad getPipDelay(PipId pip) const override { return DelayQuad(0.01); }
PipRange getPipsDownhill(WireId wire) const override PipRange getPipsDownhill(WireId wire) const override
{ {