Skip to content

Commit

Permalink
fix issue in incremental verification
Browse files Browse the repository at this point in the history
  • Loading branch information
lyg1597 committed Jan 31, 2024
1 parent e3499a5 commit 0bf7acf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion verse/analysis/verifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ def compute_full_reachtube(
if cached != None:
cached_trans_tubes[agent_id] = cached
# if incremental and DRYVR, check cache tube first
if agent_id not in node.trace and reachability_method == "DRYVR":
if agent_id not in node.trace and reachability_method == ReachabilityMethod.DRYVR:
# uncertain_param = node.uncertain_param[agent_id]
# CachedTube.tube
cur_bloated_tube, miss_seg_idx_list = self.check_cache_bloated_tube(
Expand Down

0 comments on commit 0bf7acf

Please sign in to comment.