Changes

Jump to: navigation, search

JS Schach

12 bytes added, 18:57, 21 October 2020
no edit summary
if (maxplayer) {
if (score > alpha)
alpha = score;
if (alpha > beta) // should be >=
break;
} else { // minplayer
if (score < alpha)
alpha = score;
if (alpha < beta) // should be <=
break;
}
}

Navigation menu