-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests for blended competitor and API consistency
- Loading branch information
Will McGinnis
committed
Mar 29, 2020
1 parent
f91a1f4
commit ad70f4d
Showing
8 changed files
with
245 additions
and
39 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,23 @@ | ||
Arenas | ||
====== | ||
|
||
Arenas are objects that manage populations of competitors and their matchups. Currently there is only one | ||
type of arena implemented, LambdaArenas | ||
|
||
Lambda Arena | ||
------------ | ||
|
||
.. autoclass:: elote.arenas.lambda_arena.LambdaArena | ||
:members: | ||
|
||
|
||
Helpers | ||
------- | ||
|
||
.. autoclass:: elote.arenas.base.History | ||
:members: | ||
|
||
.. autoclass:: elote.arenas.base.Bout | ||
:members: | ||
|
||
|
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,17 +1,32 @@ | ||
Competitors | ||
=========== | ||
|
||
Elo Competitor | ||
-------------- | ||
|
||
.. autoclass:: elote.competitors.elo.EloCompetitor | ||
:members: export_state,expected_score,beat,tied | ||
:members: export_state,expected_score,beat,tied,rating | ||
|
||
Glicko Competitor | ||
----------------- | ||
|
||
.. autoclass:: elote.competitors.glicko.GlickoCompetitor | ||
:members: export_state,expected_score,beat,tied | ||
:members: export_state,expected_score,beat,tied,rating | ||
|
||
DWZ Competitor | ||
-------------- | ||
|
||
.. autoclass:: elote.competitors.dwz.DWZCompetitor | ||
:members: export_state,expected_score,beat,tied | ||
:members: export_state,expected_score,beat,tied,rating | ||
|
||
ECF Competitor | ||
-------------- | ||
|
||
.. autoclass:: elote.competitors.ecf.ECFCompetitor | ||
:members: export_state,expected_score,beat,tied | ||
:members: export_state,expected_score,beat,tied,rating | ||
|
||
BlendedCompetitor | ||
----------------- | ||
|
||
.. autoclass:: elote.competitors.ensemble.BlendedCompetitor | ||
:members: export_state,expected_score,beat,tied | ||
:members: export_state,expected_score,beat,tied,rating |
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
Oops, something went wrong.