Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 514 Bytes

README.md

File metadata and controls

31 lines (24 loc) · 514 Bytes

splendor-ai

Splendor and AIs that play it

When running the code, make sure you are in the base directory. Sample run (sanity check):

python -B -m src.hello_world

Bot Tournament

To run the round robin tournament:

python -B -m src.game.tournament.round_robin_main

To run a CLI demo that steps through a game turn-by-turn:

python -B -m src.demo.game_cli

Development

To run all unit tests:

./src/run_all_tests.sh

To clear .pyc files:

find . -name '*.pyc' -delete