diff options
author | Jannis Harder <me@jix.one> | 2022-10-24 16:06:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-24 16:06:52 +0200 |
commit | 9f76ff0b6a6892db2761964aec10ccf442f174d6 (patch) | |
tree | f3def690dd58e59e07e47d958b0fb6acf16a72a0 | |
parent | 61440a42d1b8b2c5dfa50d1fd2aec4766664f6b2 (diff) | |
parent | 96029400cbf661fb5303572923df3f0dc17164ee (diff) | |
download | yosys-9f76ff0b6a6892db2761964aec10ccf442f174d6.tar.gz yosys-9f76ff0b6a6892db2761964aec10ccf442f174d6.tar.bz2 yosys-9f76ff0b6a6892db2761964aec10ccf442f174d6.zip |
Merge pull request #3517 from jix/smtbmc-witness-no-assume-skipped
smtbmc: Do not assume skipped assertions when loading a witness trace
-rw-r--r-- | backends/smt2/smtbmc.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/backends/smt2/smtbmc.py b/backends/smt2/smtbmc.py index 4c1f07229..cb21eb3aa 100644 --- a/backends/smt2/smtbmc.py +++ b/backends/smt2/smtbmc.py @@ -453,7 +453,6 @@ assert topmod in smt.modinfo if cexfile is not None: if not got_topt: - assume_skipped = 0 skip_steps = 0 num_steps = 0 @@ -499,7 +498,6 @@ if aimfile is not None: latch_map = dict() if not got_topt: - assume_skipped = 0 skip_steps = 0 num_steps = 0 @@ -633,7 +631,6 @@ if aimfile is not None: if inywfile is not None: if not got_topt: - assume_skipped = 0 skip_steps = 0 num_steps = 0 |