mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 14:07:38 -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) {
|
||||
if (isBotTurn) {
|
||||
alpha = Math.max(alpha, dive2(p, alpha, beta, depth + 1));
|
||||
if (alpha >= beta) break;
|
||||
} else {
|
||||
beta = Math.min(beta, dive2(p, alpha, beta, depth + 1));
|
||||
if (alpha >= beta) break;
|
||||
}
|
||||
if (alpha >= beta) break;
|
||||
}
|
||||
|
||||
// 巻き戻し
|
||||
|
|
Loading…
Reference in a new issue