diff options
author | Eddie Hung <eddieh@ece.ubc.ca> | 2018-08-06 09:02:49 -0700 |
---|---|---|
committer | Eddie Hung <eddieh@ece.ubc.ca> | 2018-08-06 09:02:49 -0700 |
commit | 266b761f41baef3bb9a50ffc15235451f0fc2b05 (patch) | |
tree | 4d7ff7a0b019684cc4ac7d585f863618286d7ee1 /docs/archapi.md | |
parent | 665202e9361bf4229ec4e1fe833c5592624f1230 (diff) | |
parent | c9141262b23b6cbebec0c94deb877fd7cbf2f99a (diff) | |
download | nextpnr-266b761f41baef3bb9a50ffc15235451f0fc2b05.tar.gz nextpnr-266b761f41baef3bb9a50ffc15235451f0fc2b05.tar.bz2 nextpnr-266b761f41baef3bb9a50ffc15235451f0fc2b05.zip |
Merge branch 'fix_budget_overrides' into assign_budget_speedup
Conflicts:
common/timing.cc
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 79562fe6..222b9f78 100644 --- a/docs/archapi.md +++ b/docs/archapi.md @@ -402,9 +402,9 @@ Convert an `delay_t` to an actual real-world delay in nanoseconds. Convert a `delay_t` to an integer for checksum calculations. -### delay\_t getBudgetOverride(const NetInfo \*net\_info, const PortRef &sink, delay\_t budget) const +### bool getBudgetOverride(const NetInfo \*net\_info, const PortRef &sink, delay\_t &budget) const -Overwrite or modify the timing budget for a given arc. Returns the new budget. +Overwrite or modify (in-place) the timing budget for a given arc. Returns a bool to indicate whether this was done. Flow Methods ------------ |