3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-03-19 19:43:15 +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 3603cd52a0
commit ac55935a68
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