Skip to content

Commit

Permalink
Fix bug with extra steps
Browse files Browse the repository at this point in the history
  • Loading branch information
Parzival-05 committed Feb 15, 2025
1 parent 05b0bc4 commit e73ad5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VSharp.Explorer/AISearcher.fs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ type internal AISearcher(oracle: Oracle, aiAgentTrainingMode: Option<AIAgentTrai

Application.applicationGraphDelta.Clear ()

if stepsToPlay = stepsPlayed then
if stepsToPlay <= stepsPlayed then
None
else
let toPredict =
Expand Down

0 comments on commit e73ad5e

Please sign in to comment.