mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-13 09:26:16 +00:00
yosys-witness: Don't treat aiw x-bits as don't change
While treating initialization only bits as don't change during later cycles is correct, actual x-bits should be kept as x-bits.
This commit is contained in:
parent
52c8c28d2c
commit
dcc4d6e90b
1 changed files with 1 additions and 1 deletions
|
@ -194,7 +194,7 @@ def aiw2yw(input, mapfile, output):
|
||||||
|
|
||||||
values = WitnessValues()
|
values = WitnessValues()
|
||||||
for i, v in enumerate(inline):
|
for i, v in enumerate(inline):
|
||||||
if v == "x" or outyw.t > 0 and i in aiger_map.init_inputs:
|
if outyw.t > 0 and i in aiger_map.init_inputs:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue