mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-05 17:14:08 +00:00
Add hashlib support for hashing of pools
This commit is contained in:
parent
bce0bb6e43
commit
d3b3dd8e88
|
@ -868,6 +868,13 @@ public:
|
||||||
return !operator==(other);
|
return !operator==(other);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool hash() const {
|
||||||
|
unsigned int hashval = mkhash_init;
|
||||||
|
for (auto &it : entries)
|
||||||
|
hashval ^= ops.hash(it.udata);
|
||||||
|
return hashval;
|
||||||
|
}
|
||||||
|
|
||||||
void reserve(size_t n) { entries.reserve(n); }
|
void reserve(size_t n) { entries.reserve(n); }
|
||||||
size_t size() const { return entries.size(); }
|
size_t size() const { return entries.size(); }
|
||||||
bool empty() const { return entries.empty(); }
|
bool empty() const { return entries.empty(); }
|
||||||
|
|
Loading…
Reference in a new issue