diff options
author | Eddie Hung <eddieh@ece.ubc.ca> | 2018-07-30 19:19:30 -0700 |
---|---|---|
committer | Eddie Hung <eddieh@ece.ubc.ca> | 2018-07-30 19:19:30 -0700 |
commit | a099aca3c203eeea6b6cd093f31089c2a0933927 (patch) | |
tree | ba8e996d2118331bfaf618124da8b831962d1827 /generic/arch.h | |
parent | d5049bf0eda113db9a218fe855c7e3d7d65b4384 (diff) | |
download | nextpnr-a099aca3c203eeea6b6cd093f31089c2a0933927.tar.gz nextpnr-a099aca3c203eeea6b6cd093f31089c2a0933927.tar.bz2 nextpnr-a099aca3c203eeea6b6cd093f31089c2a0933927.zip |
Modify predictDelay signature
Diffstat (limited to 'generic/arch.h')
-rw-r--r-- | generic/arch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/arch.h b/generic/arch.h index 4e4dd663..0c831004 100644 --- a/generic/arch.h +++ b/generic/arch.h @@ -194,7 +194,7 @@ struct Arch : BaseCtx const std::vector<GroupId> &getGroupGroups(GroupId group) const; delay_t estimateDelay(WireId src, WireId dst) const; - delay_t predictDelay(WireId src, WireId dst) const; + delay_t predictDelay(const NetInfo *net_info, const PortRef &sink) const; delay_t getDelayEpsilon() const { return 0.01; } delay_t getRipupDelayPenalty() const { return 1.0; } float getDelayNS(delay_t v) const { return v; } |