Skip to content

Commit

Permalink
rewording
Browse files Browse the repository at this point in the history
  • Loading branch information
daejunpark committed Jan 7, 2025
1 parent 17e6c67 commit 104137d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/halmos/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ def future_callback(future_model):
# 0 width is unlimited
if args.width and idx >= args.width:
warn(
f"{funsig}: paths have not been fully explored due to: --width {args.width}"
f"{funsig}: incomplete execution due to the specified limit: --width {args.width}"
)
break

Expand Down
2 changes: 1 addition & 1 deletion src/halmos/sevm.py
Original file line number Diff line number Diff line change
Expand Up @@ -2722,7 +2722,7 @@ def finalize(ex: Exec):

if (max_depth := self.options.depth) and step_id > max_depth:
warn(
f"{self.fun_info.sig}: paths have not been fully explored due to: --depth {max_depth}",
f"{self.fun_info.sig}: incomplete execution due to the specified limit: --depth {max_depth}",
allow_duplicate=False,
)
continue
Expand Down

0 comments on commit 104137d

Please sign in to comment.