mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-14 01:46:16 +00:00
bugfix for mathsat counterexample vcd dump
This commit is contained in:
parent
083ca6ab06
commit
2ba435b6bc
1 changed files with 1 additions and 1 deletions
|
@ -917,7 +917,7 @@ class SmtIo:
|
||||||
if len(expr_list) == 0:
|
if len(expr_list) == 0:
|
||||||
return []
|
return []
|
||||||
self.write("(get-value (%s))" % " ".join(expr_list))
|
self.write("(get-value (%s))" % " ".join(expr_list))
|
||||||
return [n[1] for n in self.parse(self.read())]
|
return [n[1] for n in self.parse(self.read()) if n]
|
||||||
|
|
||||||
def get_path(self, mod, path):
|
def get_path(self, mod, path):
|
||||||
assert mod in self.modinfo
|
assert mod in self.modinfo
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue