aboutsummaryrefslogtreecommitdiffstats
path: root/docs/archapi.md
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-11-13 05:03:46 +0100
committerClifford Wolf <clifford@clifford.at>2018-11-13 05:05:56 +0100
commit06e0e1ffeec9b06cecc213728c279b9235316df9 (patch)
tree1e4e209dfe961512370d1b5803f961303f1336c5 /docs/archapi.md
parente0fe52360621a51dc07f005dbe461db21c07f276 (diff)
downloadnextpnr-06e0e1ffeec9b06cecc213728c279b9235316df9.tar.gz
nextpnr-06e0e1ffeec9b06cecc213728c279b9235316df9.tar.bz2
nextpnr-06e0e1ffeec9b06cecc213728c279b9235316df9.zip
Various router1 fixes, Add BelId/WireId/PipId::operator<()
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'docs/archapi.md')
-rw-r--r--docs/archapi.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/archapi.md b/docs/archapi.md
index 85bc6ccd..40eabd9d 100644
--- a/docs/archapi.md
+++ b/docs/archapi.md
@@ -30,15 +30,15 @@ delay_t maxDelay() const { return delay; }
### BelId
-A type representing a bel name. `BelId()` must construct a unique null-value. Must provide `==` and `!=` operators and a specialization for `std::hash<BelId>`.
+A type representing a bel name. `BelId()` must construct a unique null-value. Must provide `==`, `!=`, and `<` operators and a specialization for `std::hash<BelId>`.
### WireId
-A type representing a wire name. `WireId()` must construct a unique null-value. Must provide `==` and `!=` operators and a specialization for `std::hash<WireId>`.
+A type representing a wire name. `WireId()` must construct a unique null-value. Must provide `==`, `!=`, and `<` operators and a specialization for `std::hash<WireId>`.
### PipId
-A type representing a pip name. `PipId()` must construct a unique null-value. Must provide `==` and `!=` operators and a specialization for `std::hash<PipId>`.
+A type representing a pip name. `PipId()` must construct a unique null-value. Must provide `==`, `!=`, and `<` operators and a specialization for `std::hash<PipId>`.
### GroupId