diff --git a/src/modules/reversi/back.ts b/src/modules/reversi/back.ts index d4a75e0..99be3bb 100644 --- a/src/modules/reversi/back.ts +++ b/src/modules/reversi/back.ts @@ -364,6 +364,7 @@ class Session { let a = alpha; let b = beta; + // TODO: 残りターン数というよりも「空いているマスが12以下」の場合に完全読みさせる const nextDepth = (this.strength >= 4) && ((this.maxTurn - this.currentTurn) <= 12) ? Infinity : depth + 1; // 次のターンのプレイヤーにとって最も良い手を取得