diff options
author | Clifford Wolf <clifford@clifford.at> | 2017-01-11 14:14:12 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2017-01-11 14:14:12 +0100 |
commit | b7cfb7dbd250a8595589f86e1b38b67015c7b9c5 (patch) | |
tree | e29459b58bb22b977956f1515e6a7aa4608201ae | |
parent | 8953a55cd806d2f14687d98d1b4279cbe949c16a (diff) | |
download | yosys-b7cfb7dbd250a8595589f86e1b38b67015c7b9c5.tar.gz yosys-b7cfb7dbd250a8595589f86e1b38b67015c7b9c5.tar.bz2 yosys-b7cfb7dbd250a8595589f86e1b38b67015c7b9c5.zip |
Fix $initstate handling bug in yosys-smtbmc
-rw-r--r-- | backends/smt2/smtbmc.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/backends/smt2/smtbmc.py b/backends/smt2/smtbmc.py index 8dbb047aa..ecee6795e 100644 --- a/backends/smt2/smtbmc.py +++ b/backends/smt2/smtbmc.py @@ -789,6 +789,7 @@ else: # not tempind for i in range(1, step_size): if step+i < num_steps: smt.write("(declare-fun s%d () |%s_s|)" % (step+i, topmod)) + smt.write("(assert (not (|%s_is| s%d)))" % (topmod, step+i)) smt.write("(assert (|%s_u| s%d))" % (topmod, step+i)) smt.write("(assert (|%s_h| s%d))" % (topmod, step+i)) smt.write("(assert (|%s_t| s%d s%d))" % (topmod, step+i-1, step+i)) @@ -812,6 +813,7 @@ else: # not tempind for i in range(last_check_step+1, last_check_step+1+append_steps): print_msg("Appending additional step %d." % i) smt.write("(declare-fun s%d () |%s_s|)" % (i, topmod)) + smt.write("(assert (not (|%s_is| s%d)))" % (topmod, i)) smt.write("(assert (|%s_u| s%d))" % (topmod, i)) smt.write("(assert (|%s_h| s%d))" % (topmod, i)) smt.write("(assert (|%s_t| s%d s%d))" % (topmod, i-1, i)) |