You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rename the argument s in the following two lines of pseudocode:
… v ← MAX(v, MIN-VALUE(RESULT(s, a), α, β))
… v ← MIN(v, MAX-VALUE(RESULT(s, a), α, β))
…
to state:
… v ← MAX(v, MIN-VALUE(RESULT(state, a), α, β))
… v ← MIN(v, MAX-VALUE(RESULT(state, a), α, β))
…
due to state being the name of the argument passed to the relevant functions.
The text was updated successfully, but these errors were encountered:
Rename the argument s in the following two lines of pseudocode:
…
v ← MAX(v, MIN-VALUE(RESULT(s, a), α, β))
…
v ← MIN(v, MAX-VALUE(RESULT(s, a), α, β))
…
to state:
…
v ← MAX(v, MIN-VALUE(RESULT(state, a), α, β))
…
v ← MIN(v, MAX-VALUE(RESULT(state, a), α, β))
…
due to state being the name of the argument passed to the relevant functions.
The text was updated successfully, but these errors were encountered: