marcharper / tournament

A repository to run the whole suite of strategies in the Axelrod library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Join the chat at https://gitter.im/Axelrod-Python/Axelrod

This repository hold results for tournaments made possible by the Axelrod-Project python library.

Reproducing these results:

To reproduce these results you will need to install the axelrod library:

$ pip install axelrod

To re run the full set of results and output them to the assets directory simply run:

$ ./update_results.sh 0 100  # Runs with all CPUS and 100 repetitions

Note that this uses the installed version of the axelrod library. If you want to keep things tidy you can create a virtualenv and install the latest version of the library like so:

$ virtualenv env
$ source env/bin/activate
$ pip install git+https://github.com/Axelrod-Python/Axelrod@master

If you have the Axelrod repository locally you can also run:

$ pip install path_to_axelrod

If you have already installed axelrod you can add the -U tag to update to the latest version of master:

$ pip install git+https://github.com/Axelrod-Python/Axelrod@master -U

or:

$ pip install path_to_axelrod  -U

About

A repository to run the whole suite of strategies in the Axelrod library

License:MIT License


Languages

Language:Python 76.9%Language:Shell 23.1%