mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 22:17:30 -07:00
Refactor
This commit is contained in:
parent
629bda733d
commit
9cdee52fcc
1 changed files with 1 additions and 2 deletions
|
@ -349,11 +349,10 @@ function think() {
|
||||||
for (const p of cans) {
|
for (const p of cans) {
|
||||||
if (isBotTurn) {
|
if (isBotTurn) {
|
||||||
alpha = Math.max(alpha, dive2(p, alpha, beta, depth + 1));
|
alpha = Math.max(alpha, dive2(p, alpha, beta, depth + 1));
|
||||||
if (alpha >= beta) break;
|
|
||||||
} else {
|
} else {
|
||||||
beta = Math.min(beta, dive2(p, alpha, beta, depth + 1));
|
beta = Math.min(beta, dive2(p, alpha, beta, depth + 1));
|
||||||
if (alpha >= beta) break;
|
|
||||||
}
|
}
|
||||||
|
if (alpha >= beta) break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 巻き戻し
|
// 巻き戻し
|
||||||
|
|
Loading…
Reference in a new issue