mirror of
https://github.com/YosysHQ/yosys
synced 2026-01-21 01:24:44 +00:00
fix
This commit is contained in:
parent
340fec0a67
commit
2633485c8f
1 changed files with 1 additions and 1 deletions
|
|
@ -475,8 +475,8 @@ void AigerReader::parse_xaiger()
|
|||
std::deque<Lut> deferred;
|
||||
for (unsigned i = 0; i < lutNum; ++i) {
|
||||
Lut lut;
|
||||
lut.name = stringf("$aiger%d$%d", aiger_autoidx, lut.output);
|
||||
lut.output = parse_xaiger_literal(f);
|
||||
lut.name = stringf("$aiger%d$%d", aiger_autoidx, lut.output);
|
||||
while (lut_defined.size() < lut.output + 1)
|
||||
lut_defined.push_back(false);
|
||||
lut_defined[lut.output] = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue