Skip to content
Snippets Groups Projects
Commit 9051ce46 authored by crides's avatar crides
Browse files

fix(verifier): mishandled tree max_height

parent c4bb5d7f
No related branches found
No related tags found
2 merge requests!26Visualize dot,!25parallel, incremental updates, and (updated) experiments for atva2023
......@@ -405,7 +405,7 @@ class Verifier:
last_id = nodes[-1].id
for i, node in enumerate(next_nodes):
node.id = i + 1 + last_id
if node.height < max_height:
if node.height <= max_height:
verification_queue.extend(next_nodes)
nodes.extend(next_nodes)
self.reachtube_tree = AnalysisTree(root)
......@@ -435,7 +435,6 @@ class Verifier:
):
if (max_height == None):
max_height = float('inf')
root = AnalysisTreeNode(
trace={},
init={},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment