-
Notifications
You must be signed in to change notification settings - Fork 282
Add EugineNier strategy from LessWrong #1016
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
Changes from 13 commits
7c407aa
b7685c5
c879bed
f6e15a7
bb03e1f
540b660
206b414
8e5622b
84e6d23
3f21591
314c9c6
74aac23
94e000b
f5f89a6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -642,10 +642,10 @@ def strategy(self, opponent: Player) -> Action: | |
| class Alexei(Player): | ||
| """ | ||
| Plays similar to Tit-for-Tat, but always defect on last turn. | ||
|
|
||
| Names: | ||
|
|
||
| - Alexei's Strategy: [LessWrong2011]_ | ||
| - Alexei's Strategy: [LessWrong2011]_ | ||
| """ | ||
|
|
||
| name = 'Alexei' | ||
|
|
@@ -665,3 +665,43 @@ def strategy(self, opponent: Player) -> Action: | |
| if opponent.history[-1] == D: | ||
| return D | ||
| return C | ||
|
|
||
| @FinalTransformer((D,), name_prefix=None) | ||
| class EugineNier(Player): | ||
| """ | ||
| Plays similar to Tit-for-Tat, but with two conditions: | ||
| 1) Always Defect on Last Move | ||
| 2) If other player defects five times, switch to all defects. | ||
|
|
||
| Names: | ||
|
|
||
| - EugineNier Strategy: [LessWrong2011]_ | ||
|
||
| """ | ||
|
|
||
| name = 'EugineNier' | ||
| classifier = { | ||
| 'memory_depth': float('inf'), | ||
| 'stochastic': False, | ||
| 'makes_use_of': {'length'}, | ||
| 'long_run_time': False, | ||
| 'inspects_source': False, | ||
| 'manipulates_source': False, | ||
| 'manipulates_state': False | ||
| } | ||
|
|
||
| def __init__(self): | ||
| super().__init__() | ||
| self.is_defector = False | ||
|
|
||
| def strategy(self, opponent: Player) -> Action: | ||
| if not self.history: | ||
| return C | ||
| if not (self.is_defector) and opponent.defections >= 5: | ||
| self.is_defector = True | ||
| if self.is_defector: | ||
| return D | ||
| return opponent.history[-1] | ||
|
|
||
| def reset(self): | ||
| super().reset() | ||
| self.is_defector = False | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -593,10 +593,56 @@ def test_strategy(self): | |
| actions = [(C, C), (C, D), (D, C), (C, D), (D, C), (C, D)] | ||
| self.versus_test(axelrod.Alternator(), expected_actions=actions, | ||
| match_attributes={"length": -1}) | ||
|
|
||
| actions = [(C, C), (C, D), (D, C), (C, D), (D, C), (D, D)] | ||
| self.versus_test(axelrod.Alternator(), expected_actions=actions) | ||
|
|
||
| opponent = axelrod.MockPlayer(actions=[C, C, D, D, C, D]) | ||
| actions = [(C, C), (C, C), (C, D), (D, D), (D, C), (D, D)] | ||
| self.versus_test(opponent, expected_actions=actions) | ||
|
|
||
| class TestEugineNier(TestPlayer): | ||
| """ | ||
| Tests for the EugineNier strategy | ||
| """ | ||
|
|
||
| name = "EugineNier: ('D',)" | ||
| player = axelrod.EugineNier | ||
| expected_classifier = { | ||
| 'memory_depth': float('inf'), | ||
| 'stochastic': False, | ||
| 'makes_use_of': {'length'}, | ||
| 'inspects_source': False, | ||
| 'manipulates_source': False, | ||
| 'manipulates_state': False | ||
| } | ||
|
|
||
| def test_strategy(self): | ||
| self.first_play_test(C) | ||
| self.second_play_test(rCC=C, rCD=D, rDC=C, rDD=D) | ||
|
|
||
| actions = [(C, C), (C, C), (C, C), (D, C)] | ||
| self.versus_test(axelrod.Cooperator(), expected_actions=actions, | ||
| attrs={"is_defector": False}) | ||
|
|
||
| actions = [(C, C), (C, C), (C, C), (C, C)] | ||
| self.versus_test(axelrod.Cooperator(), expected_actions=actions, | ||
|
Member
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. This would become: self.versus_test(axelrod.Cooperator(), expected_actions=actions,
attrs={"is_defector": False},
match_attributes={"length": -1}) |
||
| attrs={"is_defector": False}, | ||
| match_attributes={"length": -1}) | ||
|
|
||
|
|
||
| # Plays TfT and defects in last round | ||
| actions = [(C, C), (C, D), (D, C), (C, D), (D, C), (D, D)] | ||
| self.versus_test(axelrod.Alternator(), expected_actions=actions, | ||
| attrs={"is_defector": False}) | ||
|
|
||
| actions = [(C, C), (C, D), (D, C), (C, D), (D, C), (C, D)] | ||
| self.versus_test(axelrod.Alternator(), expected_actions=actions, | ||
|
Member
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. |
||
| attrs={"is_defector": False}, | ||
| match_attributes={"length": -1}) | ||
|
|
||
| # Becomes defector after 5 defections | ||
| opponent = axelrod.MockPlayer(actions=[D, C, D, D, D, D, C, C]) | ||
| actions = [(C, D), (D, C), (C, D), (D, D), | ||
| (D, D), (D, D), (D, C), (D, C)] | ||
| self.versus_test(opponent, expected_actions=actions) | ||
|
Member
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. self.versus_test(opponent, expected_actions=actions,
attrs={"is_defector": True}) |
||
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.
Is this correct? There's already a strategy called Alexei's strategy, and the name of this one is EugineNier.
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.
My bad. I will fix it.
Uh oh!
There was an error while loading. Please reload this page.
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.
I believe it is correct. I checked the source and I didn't find anything wrong with naming.
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.
This is correct, it's the name for
Alexei, it's just appearing in the diff because some white space is being cleared up on line 648.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.
However could you change this to just say: