Axelrod
Axelrod copied to clipboard
A research tool for the Iterated Prisoner's Dilemma
When we run all the unittests, it prints out stuff besides just the test results. I think it would be nice if this wasn't there. It would be cleaner. And...
With #1309 we no longer have a coveralls badge on the README saying that we have 100% (but the CI is setup to ensure we do). We could: - Include...
If we're using black to format, I'd prefer to run on existing code. If we format as we go it can be harder to see why we're changing something. It...
Now that we've moved to GitHub actions it's relatively easy to include a specific test for OSX. This requires modifying https://github.com/Axelrod-Python/Axelrod/blob/master/.github/workflows/config.yml#L12 so that: ``` os: [ubuntu-latest, windows-latest] ``` becomes ```...
This would allow us to evolve a "best" ZD strategy for various objectives, rather than a best memory-one strategy (that may or may not be ZD).
It's currently in the travis config but not in the docs anywhere that I can see. ``` cd docs; make clean; make html ```
This issue is to capture a body of work that would change the scope of the library to become: > the de facto library for agent-based game theory computation and...
Following #1256
Currently the Moran process distributes a population about a graph in sorted node order, which isn't obvious from the API. A user may want more control regarding exactly which strategy...