IPVGO: Balance and improvements for offline bonus time cycles (#1356)

This commit is contained in:
Michael Ficocelli
2024-06-05 22:39:22 -04:00
committed by GitHub
parent 463d4cdb1d
commit 481938a2fb
3 changed files with 33 additions and 30 deletions

View File

@@ -31,7 +31,7 @@ describe("Go AI tests", () => {
it("prioritizes eye creation moves for Illuminati", async () => {
const board = ["...O...", "OOOO...", ".......", ".......", ".......", ".......", "......."];
const boardState = boardStateFromSimpleBoard(board, GoOpponent.Daedalus);
const move = await getMove(boardState, GoColor.white, GoOpponent.Daedalus, 0);
const move = await getMove(boardState, GoColor.white, GoOpponent.Daedalus, false, 0);
expect([move.x, move.y]).toEqual([0, 1]);
});