diff options
author | Clifford Wolf <clifford@clifford.at> | 2016-08-29 14:53:32 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2016-08-29 14:53:32 +0200 |
commit | b226893461af46f2183be8ca9dfab62b49133c71 (patch) | |
tree | 33cfc7ba3682f5168b7d5b0f292edd59f1993c87 /backends | |
parent | a2e2fc5980e3465011d7373be34e2d018240ede4 (diff) | |
download | yosys-b226893461af46f2183be8ca9dfab62b49133c71.tar.gz yosys-b226893461af46f2183be8ca9dfab62b49133c71.tar.bz2 yosys-b226893461af46f2183be8ca9dfab62b49133c71.zip |
More yosys-smtbmc bugfixes
Diffstat (limited to 'backends')
-rw-r--r-- | backends/smt2/smtbmc.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/backends/smt2/smtbmc.py b/backends/smt2/smtbmc.py index 1bb9dd93e..a8bb82aa4 100644 --- a/backends/smt2/smtbmc.py +++ b/backends/smt2/smtbmc.py @@ -224,10 +224,10 @@ for fn in inconstr: def get_constr_expr(db, state, final=False, getvalues=False): if final: if ("final-%d" % state) not in db: - return "true" + return ([], [], []) if getvalues else "true" else: if state not in db: - return "true" + return ([], [], []) if getvalues else "true" netref_regex = re.compile(r'(^|[( ])\[(-?[0-9]+:|)([^\]]+)\](?=[ )]|$)') @@ -467,14 +467,14 @@ def write_trace(steps): def print_failed_asserts_worker(mod, state, path): assert mod in smt.modinfo - if smt.get("(|%s_a| s%d)" % (mod, state)) == "true": + if smt.get("(|%s_a| %s)" % (mod, state)) == "true": return for cellname, celltype in smt.modinfo[mod].cells.items(): - print_failed_asserts_worker(celltype, "(|%s_h %s| s%d)" % (mod, cellname, state), path + "." + cellname) + print_failed_asserts_worker(celltype, "(|%s_h %s| %s)" % (mod, cellname, state), path + "." + cellname) for assertfun, assertinfo in smt.modinfo[mod].asserts.items(): - if smt.get("(|%s| s%d)" % (assertfun, state)) == "false": + if smt.get("(|%s| %s)" % (assertfun, state)) == "false": print("%s Assert failed in %s: %s" % (smt.timestamp(), path, assertinfo)) @@ -486,7 +486,7 @@ def print_failed_asserts(state, final=False): print("%s Assert %s failed: %s" % (smt.timestamp(), loc, expr)) if not final: - print_failed_asserts_worker(topmod, state, topmod) + print_failed_asserts_worker(topmod, "s%d" % state, topmod) if tempind: |