Skip to content
/ gekitai Public

Adversarial Search usining Minimax and MCTS

Notifications You must be signed in to change notification settings

mbrdg/gekitai

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Gekitai

IA - L.EIC

  • IA first assignment, this project focus on adversarial search in a 2 player, turn based, board game.

Setup

  • This project is meant to be run in a conda environment, however it should with pip without any problems, just adapt conda commands to pip commands.

Dependencies

  • The dependencies to run the project are the following:

  • In order to create an environment and install the required packages, run:

$ conda create --name gekitai python
$ conda activate gekitai
(gekitai) $ conda install numpy scipy pip
(gekitai) $ pip install pygame

And that's all, now you should be able to run the project from here.

Authors