diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-11-11 11:34:38 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-11-11 11:34:38 +0100 |
commit | d2bdb670c0be9e18722f79c170fc99d7f41768f1 (patch) | |
tree | c699864e888a9755e6a3f1aa958b8953e638e5f3 /generic/arch.h | |
parent | 285bffeac5ace1679489c2d23c8c5dc4b06f0bfc (diff) | |
download | nextpnr-d2bdb670c0be9e18722f79c170fc99d7f41768f1.tar.gz nextpnr-d2bdb670c0be9e18722f79c170fc99d7f41768f1.tar.bz2 nextpnr-d2bdb670c0be9e18722f79c170fc99d7f41768f1.zip |
Add getConflictingPipWire() arch API, router1 improvements
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'generic/arch.h')
-rw-r--r-- | generic/arch.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/generic/arch.h b/generic/arch.h index 22966e2a..d64d03c3 100644 --- a/generic/arch.h +++ b/generic/arch.h @@ -187,6 +187,7 @@ struct Arch : BaseCtx bool checkPipAvail(PipId pip) const; NetInfo *getBoundPipNet(PipId pip) const; NetInfo *getConflictingPipNet(PipId pip) const; + WireId getConflictingPipWire(PipId pip) const; const std::vector<PipId> &getPips() const; Loc getPipLocation(PipId pip) const; WireId getPipSrcWire(PipId pip) const; |