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 | up202008462@fe.up.pt |
Martim Raúl da Rocha Henriques | up202004421@fe.up.pt |
Tiago Filipe Magalhães Barbosa | up202004926@fe.up.pt |
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'