IPVGO: Do not update captures on passed analysis boards (#2415)

This commit is contained in:
Michael Ficocelli
2025-12-21 16:44:24 -05:00
committed by GitHub
parent 49e231fd41
commit 4218b01dfb
8 changed files with 127 additions and 20 deletions

View File

@@ -156,7 +156,7 @@ Reset all win/loss and winstreak records for the No AI opponent.
</td></tr>
<tr><td>
[setTestingBoardState(boardState, komi)](./bitburner.goanalysis.settestingboardstate.md)
[setTestingBoardState(boardState, komi, nextPlayerIsWhite)](./bitburner.goanalysis.settestingboardstate.md)
</td><td>

View File

@@ -9,7 +9,7 @@ Starts a new game against the "No AI" opponent, and sets the initial board size,
**Signature:**
```typescript
setTestingBoardState(boardState: string[], komi?: number): void;
setTestingBoardState(boardState: string[], komi?: number, nextPlayerIsWhite?: boolean): void;
```
## Parameters
@@ -61,6 +61,22 @@ number
_(Optional)_ Optional komi value to set for the game. Defaults to 5.5.
</td></tr>
<tr><td>
nextPlayerIsWhite
</td><td>
boolean
</td><td>
_(Optional)_ Optional. Whether or not the next player to play is the white player. Defaults to false.
</td></tr>
</tbody></table>