Skip to content

Python wrapper library around TourExec Fortran for Axelrod's second tournament.

License

Notifications You must be signed in to change notification settings

Axelrod-Python/axelrod-fortran

Folders and files

NameName
Last commit message
Last commit date

Latest commit

d0ab704 · Aug 20, 2020
Aug 20, 2020
Aug 11, 2020
Aug 20, 2020
Jul 23, 2017
Jul 23, 2017
Jul 30, 2017
Aug 11, 2020
Aug 20, 2020
Jul 26, 2017
Jul 29, 2017
Jul 29, 2017
Oct 19, 2017
Jul 24, 2017
Aug 12, 2020
Jul 23, 2017
Aug 20, 2020

Repository files navigation

Overview

Python wrapper for strategies originally written in Fortran.

  • Free software: MIT license

Installation

To use this library the original Fortran code must be compiled: https://github.com/Axelrod-Python/TourExec.

pip install axelrod-fortran

Usage

Running a match:

>>> import axelrod_fortran as axlf
>>> import axelrod as axl
>>> p1 = axlf.Player('k31r')
>>> p2 = axlf.Player('k33r')
>>> match = axl.Match((p1, p2), turns=5)
>>> match.play()
[(C, C), (C, C), (C, D), (C, D), (C, C)]

Contributing

Please see CONTRIBUTING.rst for details about installing for development and running the test suite.