3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-03-02 11:46:57 +00:00

Add unit-tests for ParallelDispatchThread and friends

This commit is contained in:
Robert O'Callahan 2026-02-02 23:04:34 +00:00
parent f2340639e8
commit 722a4fc335
3 changed files with 169 additions and 2 deletions

View file

@ -312,6 +312,9 @@ struct IntRange {
};
Int begin() const { return {start_}; }
Int end() const { return {end_}; }
bool operator==(const IntRange &other) const { return start_ == other.start_ && end_ == other.end_; }
bool operator!=(const IntRange &other) const { return !(*this == other); }
};
YOSYS_NAMESPACE_END