mirror of https://github.com/YosysHQ/yosys.git
Comment O(N) -> O(N^2)
This commit is contained in:
parent
b959bf79c0
commit
f705f6a0b5
|
@ -62,7 +62,7 @@ struct ExclusiveDatabase
|
|||
|
||||
bool query(const SigSpec& sig1, const SigSpec& sig2) const
|
||||
{
|
||||
// FIXME: O(N)
|
||||
// FIXME: O(N^2)
|
||||
for (auto bit1 : sig1.bits()) {
|
||||
auto it = sig_cmp_prev.find(bit1);
|
||||
if (it == sig_cmp_prev.end())
|
||||
|
|
Loading…
Reference in New Issue