ZO7Y4ICU3LPK6SBWPJLBSAEXJMWGEFONSB53KXPSUOPPG7JZVHKAC
const scr = try negamax(gs, ALPHA, BETA, current_depth);
const scr = try negamax(gs, alpha, beta, current_depth);
// ASPIRATION window: we fell out, so reset values and try again
if (scr <= alpha or scr >= beta) {
alpha = ALPHA;
beta = BETA;
current_depth -= 1;
continue;
}