mirror of https://github.com/YosysHQ/yosys.git
Add TODO to parse_xaiger
This commit is contained in:
parent
bc22e2e3ee
commit
d005568f2e
|
@ -398,6 +398,7 @@ void AigerReader::parse_xaiger()
|
||||||
log_assert(wire);
|
log_assert(wire);
|
||||||
input_sig.append(wire);
|
input_sig.append(wire);
|
||||||
}
|
}
|
||||||
|
// TODO: Compute LUT mask from AIG in less than O(2 ** input_sig.size())
|
||||||
ce.clear();
|
ce.clear();
|
||||||
ce.compute_deps(output_sig, input_sig.to_sigbit_pool());
|
ce.compute_deps(output_sig, input_sig.to_sigbit_pool());
|
||||||
RTLIL::Const lut_mask(RTLIL::State::Sx, 1 << input_sig.size());
|
RTLIL::Const lut_mask(RTLIL::State::Sx, 1 << input_sig.size());
|
||||||
|
|
Loading…
Reference in New Issue