diff options
Diffstat (limited to 'docs/archapi.md')
-rw-r--r-- | docs/archapi.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/archapi.md b/docs/archapi.md index f2571f08..f798254f 100644 --- a/docs/archapi.md +++ b/docs/archapi.md @@ -280,7 +280,7 @@ Return a (preferably unique) number that represents this wire. This is used in d ### void bindWire(WireId wire, NetInfo \*net, PlaceStrength strength) -Bind a wire to a net. This method must be used when binding a wire that is driven by a bel pin. Use `binPip()` +Bind a wire to a net. This method must be used when binding a wire that is driven by a bel pin. Use `bindPip()` when binding a wire that is driven by a pip. This method must also update `net->wires`. @@ -517,7 +517,7 @@ result, and for that estimate it is considered more acceptable to return a slightly too high result and it is considered less acceptable to return a too low result (thus "low upper bound"). -### delay\_t predictDelay(const NetInfo \*net\_info, const PortRef &sink) const +### delay\_t predictDelay(BelId src_bel, IdString src_pin, BelId dst_bel, IdString dst_pin) const Return a reasonably good estimate for the total `maxDelay()` delay for the given arc. This should return a low upper bound for the fastest route for that arc. |