This project is a part of the Artificial Intelligence course unit @ FEUP.
Bound is a two-player board game that we recreated in Python, including the development of AI-powered CPU players.
Name | |
---|---|
José Luís Cunha Rodrigues | [email protected] |
Martim Raúl da Rocha Henriques | [email protected] |
Tiago Filipe Magalhães Barbosa | [email protected] |
Assuming Python is installed, run the main file:
pip install -r requirements.txt
cd src
python main.py
There is also a script included to run the game without the display, in order to test the bots more efficiently:
cd src
python main_dev.py
To run the tests, do:
cd src
python -m unittest discover -s test -p '*_test.py'