-
Notifications
You must be signed in to change notification settings - Fork 269
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docs and such #687
Merged
Merged
Docs and such #687
Changes from 4 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
7f76179
Update community.rst
marcharper d15414f
Update index.rst
marcharper 031f1bc
Update readme.rst
marcharper c4aded7
Docstring edits and formatting
marcharper 91a7da9
Fix sphinx
drvinceknight 45a35ce
Add encoding back in.
drvinceknight 15589f4
Merge pull request #5 from drvinceknight/marcharper-docs
marcharper 6d6de4f
Three clarifications / grammar fixes in the docs
marcharper f007afe
-d on used
marcharper File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
from collections import Counter | ||
import random | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,35 @@ | |
Welcome to the documentation for the Axelrod Python library | ||
=========================================================== | ||
|
||
Here is quick overview of what can be done with the library. | ||
Here is quick overview of the current capabilities of the library: | ||
* Over 100 strategies from the literature and some exciting original | ||
contributions | ||
* Classic strategies like TiT-For-Tat, WSLS, and variants | ||
* Zero-Determinant and other Memory-One strategies | ||
* Many generic strategies that can be used to define an array of popular | ||
strategies, including finite state machines, strategies that hunt for | ||
patterns in other strategies, and strategies that combine the effects of | ||
many others | ||
* Strategy transformers that augment that abilities of any strategy | ||
* Head-to-Head matches | ||
* Round Robin tournaments with a variety of options, including: | ||
* noisy environments | ||
* spatial games | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. spatial tournaments? |
||
* probabilistically chosen match lengths | ||
* Population dynamics | ||
* The Moran process | ||
* An ecological model | ||
*Multi-processor support, caching for deterministic interactions, automatically | ||
generate figures and statistics | ||
|
||
Every strategy is categorized on a number of dimensions, including: | ||
* Deterministic or Stochastic | ||
* How many rounds of history used | ||
* Whether the strategy has access to the game matrix, the length of the | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. whether the strategy makes use of? The tournament can decide what it has access to right? |
||
match, etc. | ||
|
||
Furthermore the library is extensively tested with 99%+ coverage, ensuring | ||
validity and reproducibility of results! | ||
|
||
|
||
Quick start | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that augment the