IPVGO: Record full history to avoid infinite ko capture loops on larger boards (#1299)

This commit is contained in:
Michael Ficocelli
2024-06-02 23:19:26 -04:00
committed by GitHub
parent 2f7950b49c
commit d9f04203cf
7 changed files with 61 additions and 28 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ export type BoardState = {
board: Board;
previousPlayer: GoColor | null;
/** The previous board positions as a SimpleBoard */
previousBoards: SimpleBoard[];
previousBoards: string[];
ai: GoOpponent;
passCount: number;
cheatCount: number;