3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-05 17:14:08 +00:00

Merge pull request #4801 from povik/aiger2-rm-print

read_xaiger2: Rm debug print
This commit is contained in:
Martin Povišer 2024-12-05 18:41:16 +01:00 committed by GitHub
commit 4cdca66579
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -341,7 +341,6 @@ struct Xaiger2Frontend : public Frontend {
/* unused box_id = */ read_be32(*f);
auto box_seq = read_be32(*f);
log("box_seq=%d boxes.size=%d\n", box_seq, (int) boxes.size());
log_assert(box_seq < boxes.size());
auto [cell, def] = boxes[box_seq];