Skip to content
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

Dbs #976

Merged
merged 23 commits into from
May 5, 2017
Merged

Dbs #976

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
3be6d6c
adds dbs.py in strategies repository
edouardArgenson Apr 15, 2017
cc168f4
adds test file, add reset method
edouardArgenson Apr 16, 2017
68b47f6
adds new module to docs/references/all_strategies.rst file
edouardArgenson Apr 16, 2017
da4d686
clean debbugging prints
edouardArgenson Apr 16, 2017
d77383d
add precisions on dbs description
edouardArgenson Apr 16, 2017
6ed2688
adds reference to bibliography.rst
edouardArgenson Apr 17, 2017
46aad13
adapt bibliography format in strategy description
edouardArgenson Apr 17, 2017
2182512
apply PEP8 recommendations to code
edouardArgenson Apr 17, 2017
70a0b1c
replace Policy class by instanciations of dictionnaries, only keep a …
edouardArgenson Apr 17, 2017
d6dbef6
rename method F as minimax_search_procedure
edouardArgenson Apr 17, 2017
a152100
readability modifications
edouardArgenson Apr 20, 2017
1bc6a34
corrects name error in minimax_tree_search function
edouardArgenson Apr 20, 2017
d5fbd47
adds test to increase coverage, in particular coverage of ShouldDemot…
edouardArgenson Apr 20, 2017
9f4f3ff
changes in Node documentation to avoid failure on doc
edouardArgenson Apr 20, 2017
8559ef2
adds test for Node NotImplementedError
edouardArgenson Apr 20, 2017
10489ae
correct little mistakes and ensure it passes the tests
edouardArgenson Apr 20, 2017
bc03a2d
corrects typo mistakes and make some readability changes
edouardArgenson Apr 25, 2017
6562eca
corrects docstring format for parameters
edouardArgenson Apr 25, 2017
fc1ff03
corrects spelling mistake in comments
edouardArgenson Apr 25, 2017
d796578
corrects minor formatting issues and change class name DeterministNod…
edouardArgenson Apr 27, 2017
2a60d7d
adds docstrings for functions. adds comments describing variables. fo…
edouardArgenson Apr 27, 2017
e6c9662
adds test for tree search functions. Adds doctstring for get_siblings…
edouardArgenson May 1, 2017
e742004
merged from several branches and resolve conflict
edouardArgenson May 1, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions axelrod/strategies/_strategies.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
AntiCycler, Cycler, CyclerCCD, CyclerCCCD, CyclerCCCCCD,
CyclerDC, CyclerDDC, CyclerCCCDCD)
from .darwin import Darwin
from .dbs import DBS
from .defector import Defector, TrickyDefector
from .doubler import Doubler
from .finite_state_machines import (
Expand Down Expand Up @@ -115,6 +116,7 @@
CyclerCCCDCD,
Darwin,
Davis,
DBS,
Defector,
DefectorHunter,
Desperate,
Expand Down
Loading