Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 1.08 KB

README.md

File metadata and controls

30 lines (20 loc) · 1.08 KB

Monte Carlo Tree Search Games

This work is intended to provide an exploratory framework for using Monte Carlo Tree Search for various single player and two player games.

The framework is under development and most likely has some defects that have arisen as a second game has been added which provided more insights into abstracting a specific game from the Monte Carlo search algorithm. When the framework is more stable I'll update this note.

QuickStart

The GameControllerApp class is used to specify which game to run, either Tic-Tac-Toe or FourInLine, by commenting and uncommenting code in the start method:

@Override
    public void start(Stage primaryStage) {
        setPrimaryStage(primaryStage);
        startNewFourInLineGame(P2);
        //startNewTicTacGame(P1);
    }

P1 is the computer. P2 is the user. To let the player to move first be randomly selected invoke the start of the game using:

startNewFourInLineGame(chooseFirstMove());

The program is then executed by running GameControllerApp (I'm running inside IntelliJ during development).

More to come...