Skip to content

Commit a2ebf99

Browse files
ancavargsvgit
authored andcommitted
Fix condition for choosing data to send
1 parent 3f1d709 commit a2ebf99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

VSharp.Explorer/AISearcher.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ type internal AISearcher(oracle: Oracle, aiAgentTrainingOptions: Option<AIAgentT
133133
then None
134134
else
135135
let toPredict =
136-
if stepsPlayed < stepsToSwitchToAI
136+
if stepsPlayed = 0u<step>
137137
then gameState.Value
138138
else gameStateDelta
139139
let stateId = oracle.Predict toPredict

0 commit comments

Comments
 (0)