diff options
author | Clifford Wolf <clifford@clifford.at> | 2016-09-07 21:01:51 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2016-09-07 21:01:51 +0200 |
commit | 209a3d9ffcb5f7efbe60b0e0d45755329532535e (patch) | |
tree | 3528b596bb3108f531edf0c5c6a96c4bf81a6b5e /backends | |
parent | 6770d6e0f878b4e172bb04f1d0df5fa72f05e167 (diff) | |
download | yosys-209a3d9ffcb5f7efbe60b0e0d45755329532535e.tar.gz yosys-209a3d9ffcb5f7efbe60b0e0d45755329532535e.tar.bz2 yosys-209a3d9ffcb5f7efbe60b0e0d45755329532535e.zip |
Bugfix in "yosys-smtbmc --unroll"
Diffstat (limited to 'backends')
-rw-r--r-- | backends/smt2/smtio.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/smt2/smtio.py b/backends/smt2/smtio.py index 9bb934a46..b234270cb 100644 --- a/backends/smt2/smtio.py +++ b/backends/smt2/smtio.py @@ -533,7 +533,7 @@ class SmtOpts: self.solver = "z3" self.debug_print = False self.debug_file = None - self.unroll = True + self.unroll = False self.timeinfo = True def handle(self, o, a): |