├── .editorconfig ├── .gitignore ├── .travis.yml ├── CHANGES.txt ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── assets ├── all_strategies.csv ├── all_strategies_boxplot.png ├── all_strategies_payoff.png ├── all_strategies_reproduce.png ├── basic_strategies.csv ├── basic_strategies_boxplot.png ├── basic_strategies_payoff.png ├── basic_strategies_reproduce.png ├── cheating_strategies.csv ├── cheating_strategies_boxplot.png ├── cheating_strategies_payoff.png ├── cheating_strategies_reproduce.png ├── strategies.csv ├── strategies_boxplot.png ├── strategies_payoff.png └── strategies_reproduce.png ├── axelrod ├── __init__.py ├── ecosystem.py ├── game.py ├── player.py ├── plot.py ├── result_set.py ├── round_robin.py ├── strategies │ ├── __init__.py │ ├── _strategies.py │ ├── alternator.py │ ├── appeaser.py │ ├── averagecopier.py │ ├── cooperator.py │ ├── darwin.py │ ├── defector.py │ ├── forgiver.py │ ├── geller.py │ ├── gobymajority.py │ ├── grudger.py │ ├── grumpy.py │ ├── hunter.py │ ├── inverse.py │ ├── mathematicalconstants.py │ ├── memoryone.py │ ├── meta.py │ ├── mindcontrol.py │ ├── mindreader.py │ ├── oncebitten.py │ ├── punisher.py │ ├── qlearner.py │ ├── rand.py │ ├── retaliate.py │ └── titfortat.py ├── tests │ ├── __init__.py │ ├── test_alternator.py │ ├── test_appeaser.py │ ├── test_averagecopier.py │ ├── test_cooperator.py │ ├── test_darwin.py │ ├── test_defector.py │ ├── test_ecosystem.py │ ├── test_forgiver.py │ ├── test_game.py │ ├── test_geller.py │ ├── test_gobymajority.py │ ├── test_grudger.py │ ├── test_grumpy.py │ ├── test_hunter.py │ ├── test_inverse.py │ ├── test_mathematicalconstants.py │ ├── test_memoryone.py │ ├── test_meta.py │ ├── test_mindcontrol.py │ ├── test_mindreader.py │ ├── test_oncebitten.py │ ├── test_player.py │ ├── test_plot.py │ ├── test_punisher.py │ ├── test_qlearner.py │ ├── test_rand.py │ ├── test_resultset.py │ ├── test_retaliate.py │ ├── test_round_robin.py │ ├── test_titfortat.py │ ├── test_tournament.py │ └── test_tournament_manager.py ├── tournament.py ├── tournament_manager.py └── utils.py ├── cache.txt ├── docs ├── Makefile ├── _static │ ├── favicon.ico │ └── usage │ │ ├── basic_strategies-5-Defector-3-TitForTat.svg │ │ ├── basic_strategies-reproduce-huge-initial-D.svg │ │ ├── basic_strategies-reproduce-large-initial-D.svg │ │ ├── basic_strategies-reproduce.svg │ │ ├── basic_strategies.svg │ │ └── payoffs.svg ├── background.rst ├── conf.py ├── contributing.rst ├── index.rst ├── strategies.py ├── strategies.rst └── usage.rst ├── requirements.txt ├── run_axelrod └── setup.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *pyc 2 | *.DS_Store 3 | site/ 4 | _build/ 5 | *.log 6 | dist/ 7 | MANIFEST 8 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/README.rst -------------------------------------------------------------------------------- /assets/all_strategies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/assets/all_strategies.csv -------------------------------------------------------------------------------- /assets/all_strategies_boxplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/assets/all_strategies_boxplot.png -------------------------------------------------------------------------------- /assets/all_strategies_payoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/assets/all_strategies_payoff.png -------------------------------------------------------------------------------- /assets/all_strategies_reproduce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/assets/all_strategies_reproduce.png -------------------------------------------------------------------------------- /assets/basic_strategies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/assets/basic_strategies.csv -------------------------------------------------------------------------------- /assets/basic_strategies_boxplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/assets/basic_strategies_boxplot.png -------------------------------------------------------------------------------- /assets/basic_strategies_payoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/assets/basic_strategies_payoff.png -------------------------------------------------------------------------------- /assets/basic_strategies_reproduce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/assets/basic_strategies_reproduce.png -------------------------------------------------------------------------------- /assets/cheating_strategies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/assets/cheating_strategies.csv -------------------------------------------------------------------------------- /assets/cheating_strategies_boxplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/assets/cheating_strategies_boxplot.png -------------------------------------------------------------------------------- /assets/cheating_strategies_payoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/assets/cheating_strategies_payoff.png -------------------------------------------------------------------------------- /assets/cheating_strategies_reproduce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/assets/cheating_strategies_reproduce.png -------------------------------------------------------------------------------- /assets/strategies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/assets/strategies.csv -------------------------------------------------------------------------------- /assets/strategies_boxplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/assets/strategies_boxplot.png -------------------------------------------------------------------------------- /assets/strategies_payoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/assets/strategies_payoff.png -------------------------------------------------------------------------------- /assets/strategies_reproduce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/assets/strategies_reproduce.png -------------------------------------------------------------------------------- /axelrod/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/__init__.py -------------------------------------------------------------------------------- /axelrod/ecosystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/ecosystem.py -------------------------------------------------------------------------------- /axelrod/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/game.py -------------------------------------------------------------------------------- /axelrod/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/player.py -------------------------------------------------------------------------------- /axelrod/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/plot.py -------------------------------------------------------------------------------- /axelrod/result_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/result_set.py -------------------------------------------------------------------------------- /axelrod/round_robin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/round_robin.py -------------------------------------------------------------------------------- /axelrod/strategies/__init__.py: -------------------------------------------------------------------------------- 1 | from _strategies import * 2 | -------------------------------------------------------------------------------- /axelrod/strategies/_strategies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/_strategies.py -------------------------------------------------------------------------------- /axelrod/strategies/alternator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/alternator.py -------------------------------------------------------------------------------- /axelrod/strategies/appeaser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/appeaser.py -------------------------------------------------------------------------------- /axelrod/strategies/averagecopier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/averagecopier.py -------------------------------------------------------------------------------- /axelrod/strategies/cooperator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/cooperator.py -------------------------------------------------------------------------------- /axelrod/strategies/darwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/darwin.py -------------------------------------------------------------------------------- /axelrod/strategies/defector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/defector.py -------------------------------------------------------------------------------- /axelrod/strategies/forgiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/forgiver.py -------------------------------------------------------------------------------- /axelrod/strategies/geller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/geller.py -------------------------------------------------------------------------------- /axelrod/strategies/gobymajority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/gobymajority.py -------------------------------------------------------------------------------- /axelrod/strategies/grudger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/grudger.py -------------------------------------------------------------------------------- /axelrod/strategies/grumpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/grumpy.py -------------------------------------------------------------------------------- /axelrod/strategies/hunter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/hunter.py -------------------------------------------------------------------------------- /axelrod/strategies/inverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/inverse.py -------------------------------------------------------------------------------- /axelrod/strategies/mathematicalconstants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/mathematicalconstants.py -------------------------------------------------------------------------------- /axelrod/strategies/memoryone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/memoryone.py -------------------------------------------------------------------------------- /axelrod/strategies/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/meta.py -------------------------------------------------------------------------------- /axelrod/strategies/mindcontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/mindcontrol.py -------------------------------------------------------------------------------- /axelrod/strategies/mindreader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/mindreader.py -------------------------------------------------------------------------------- /axelrod/strategies/oncebitten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/oncebitten.py -------------------------------------------------------------------------------- /axelrod/strategies/punisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/punisher.py -------------------------------------------------------------------------------- /axelrod/strategies/qlearner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/qlearner.py -------------------------------------------------------------------------------- /axelrod/strategies/rand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/rand.py -------------------------------------------------------------------------------- /axelrod/strategies/retaliate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/retaliate.py -------------------------------------------------------------------------------- /axelrod/strategies/titfortat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/strategies/titfortat.py -------------------------------------------------------------------------------- /axelrod/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /axelrod/tests/test_alternator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_alternator.py -------------------------------------------------------------------------------- /axelrod/tests/test_appeaser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_appeaser.py -------------------------------------------------------------------------------- /axelrod/tests/test_averagecopier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_averagecopier.py -------------------------------------------------------------------------------- /axelrod/tests/test_cooperator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_cooperator.py -------------------------------------------------------------------------------- /axelrod/tests/test_darwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_darwin.py -------------------------------------------------------------------------------- /axelrod/tests/test_defector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_defector.py -------------------------------------------------------------------------------- /axelrod/tests/test_ecosystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_ecosystem.py -------------------------------------------------------------------------------- /axelrod/tests/test_forgiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_forgiver.py -------------------------------------------------------------------------------- /axelrod/tests/test_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_game.py -------------------------------------------------------------------------------- /axelrod/tests/test_geller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_geller.py -------------------------------------------------------------------------------- /axelrod/tests/test_gobymajority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_gobymajority.py -------------------------------------------------------------------------------- /axelrod/tests/test_grudger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_grudger.py -------------------------------------------------------------------------------- /axelrod/tests/test_grumpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_grumpy.py -------------------------------------------------------------------------------- /axelrod/tests/test_hunter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_hunter.py -------------------------------------------------------------------------------- /axelrod/tests/test_inverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_inverse.py -------------------------------------------------------------------------------- /axelrod/tests/test_mathematicalconstants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_mathematicalconstants.py -------------------------------------------------------------------------------- /axelrod/tests/test_memoryone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_memoryone.py -------------------------------------------------------------------------------- /axelrod/tests/test_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_meta.py -------------------------------------------------------------------------------- /axelrod/tests/test_mindcontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_mindcontrol.py -------------------------------------------------------------------------------- /axelrod/tests/test_mindreader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_mindreader.py -------------------------------------------------------------------------------- /axelrod/tests/test_oncebitten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_oncebitten.py -------------------------------------------------------------------------------- /axelrod/tests/test_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_player.py -------------------------------------------------------------------------------- /axelrod/tests/test_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_plot.py -------------------------------------------------------------------------------- /axelrod/tests/test_punisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_punisher.py -------------------------------------------------------------------------------- /axelrod/tests/test_qlearner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_qlearner.py -------------------------------------------------------------------------------- /axelrod/tests/test_rand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_rand.py -------------------------------------------------------------------------------- /axelrod/tests/test_resultset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_resultset.py -------------------------------------------------------------------------------- /axelrod/tests/test_retaliate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_retaliate.py -------------------------------------------------------------------------------- /axelrod/tests/test_round_robin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_round_robin.py -------------------------------------------------------------------------------- /axelrod/tests/test_titfortat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_titfortat.py -------------------------------------------------------------------------------- /axelrod/tests/test_tournament.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_tournament.py -------------------------------------------------------------------------------- /axelrod/tests/test_tournament_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tests/test_tournament_manager.py -------------------------------------------------------------------------------- /axelrod/tournament.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tournament.py -------------------------------------------------------------------------------- /axelrod/tournament_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/tournament_manager.py -------------------------------------------------------------------------------- /axelrod/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/axelrod/utils.py -------------------------------------------------------------------------------- /cache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/cache.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/docs/_static/favicon.ico -------------------------------------------------------------------------------- /docs/_static/usage/basic_strategies-5-Defector-3-TitForTat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/docs/_static/usage/basic_strategies-5-Defector-3-TitForTat.svg -------------------------------------------------------------------------------- /docs/_static/usage/basic_strategies-reproduce-huge-initial-D.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/docs/_static/usage/basic_strategies-reproduce-huge-initial-D.svg -------------------------------------------------------------------------------- /docs/_static/usage/basic_strategies-reproduce-large-initial-D.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/docs/_static/usage/basic_strategies-reproduce-large-initial-D.svg -------------------------------------------------------------------------------- /docs/_static/usage/basic_strategies-reproduce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/docs/_static/usage/basic_strategies-reproduce.svg -------------------------------------------------------------------------------- /docs/_static/usage/basic_strategies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/docs/_static/usage/basic_strategies.svg -------------------------------------------------------------------------------- /docs/_static/usage/payoffs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/docs/_static/usage/payoffs.svg -------------------------------------------------------------------------------- /docs/background.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/docs/background.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/strategies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/docs/strategies.py -------------------------------------------------------------------------------- /docs/strategies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/docs/strategies.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib==1.4.2 2 | -------------------------------------------------------------------------------- /run_axelrod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/run_axelrod -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drvinceknight/Axelrod/HEAD/setup.py --------------------------------------------------------------------------------