1
0
mirror of synced 2026-02-26 00:44:49 +00:00

Enable xaiger2 pass when not in NDEBUG

This commit is contained in:
Mike Inouye
2025-11-21 14:23:32 -08:00
committed by GitHub
parent bf70581efa
commit f098352ae6

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);
}