Revert "Fix polarity"

This reverts commit 9cd23cf0fe.
This commit is contained in:
Eddie Hung 2019-08-23 15:03:42 -07:00
parent 9cd23cf0fe
commit e85e6e8d45
1 changed files with 1 additions and 1 deletions

View File

@ -462,7 +462,7 @@ with open(outfile, "w") as f:
print(" int i = 0;", file=f)
print(" pool<Cell*> users;", file=f)
print(" for (auto bit : sigmap(sig))", file=f)
print(" if (!unique)", file=f);
print(" if (unique)", file=f);
print(" i += GetSize(sigusers[bit]);", file=f);
print(" else", file=f);
print(" for (auto user : sigusers[bit])", file=f)