Skip to content

Commit

Permalink
fix width check
Browse files Browse the repository at this point in the history
  • Loading branch information
karmacoma-eth committed May 31, 2024
1 parent 7ebc213 commit 2db8e29
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/halmos/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,8 @@ def future_callback(future_model):
elif not error:
normal += 1

if len(result_exs) >= args.width:
# 0 width is unlimited
if args.width and len(result_exs) >= args.width:
break

timer.create_subtimer("models")
Expand Down

0 comments on commit 2db8e29

Please sign in to comment.