rcg

rcg.git
git clone git://git.lenczewski.org/rcg.git
Log | Files | Refs | README | LICENSE

README (691B)


      1 rcg: robot card game
      2 ==============================================================================
      3 A simple card game, written for AI agents to play against themselves.
      4 
      5 rcg: Building
      6 ------------------------------------------------------------------------------
      7 To build the server and all agents, simply run:
      8 ```sh
      9 $ ./build.sh
     10 ```
     11 
     12 To benchmark two agents against each other, use the `extras/benchmark.py`
     13 script, as follows:
     14 ```sh
     15 $ ./extras/benchmark.py <agent1> <agent2> <iters>
     16 ```
     17 
     18 To host a tournament, use the `extras/tournament.py` script as follows:
     19 ```sh
     20 $ ./extras/tournament.py <schedule.txt> <output.txt>
     21 ```
     22 
     23 For concrete documentation, please read the individual scripts.