skornous / MCTS-Draughts

Yet another school project : MCTS algorithm and parallel computing on a draughts game

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MCTS - Draughts

Yet an other school project, using Java this time. And as we don't care about IG it's going to be a console game.

Basics

A game of draughts [as basically defined by Wikipedia] (https://en.wikipedia.org/wiki/Draughts). We're supposed to make it using parallel computing. It'll be implemented after a first version of the game with some basic MCTS algorithm runs.

N.B. : You can choose the size of your board at the start of the game, it goes from 5 to infinity. As it seems impossible to play with a board smaller than 5x5

IA

We're implementing the MCTS (Monte Carlo tree search) algorithm as an IA for the players

Launch

As it's an ongoing project, no executables has been generated yet, so if you want to launch it you'll have to use an IDE

Copyright

MIT License

Copyright (c) 2016 Hugo GENNARO & Anne-Laure BULIN

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Yet another school project : MCTS algorithm and parallel computing on a draughts game


Languages

Language:Java 100.0%