Merge pull request #5500 from mikesinouye/xaiger2

Enable xaiger2 pass when not in NDEBUG
This commit is contained in:
Emil J 2025-11-24 11:44:36 +01:00 committed by GitHub
commit faa1e8fac4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -110,7 +110,8 @@ struct Xaiger2Frontend : public Frontend {
for (int i = 0; i < (int) O; i++) {
int po;
*f >> po;
log_assert(f->get() == '\n');
int c = f->get();
log_assert(c == '\n');
outputs.push_back(po);
}