-
Notifications
You must be signed in to change notification settings - Fork 271
Add test for memory depth #1157
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 all commits
e9da4f9
c612c1e
f6479f7
ef130c2
46d1d5d
483d96e
3765d1e
517d855
e0871b0
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 |
---|---|---|
|
@@ -22,7 +22,7 @@ class MindReader(Player): | |
|
||
name = 'Mind Reader' | ||
classifier = { | ||
'memory_depth': -10, | ||
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. Same. I think for these cheating strategies we don't care so much... 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. Yeah I thought it was probably due to the "looking in to the future" but taking the notion of infinity to mean "backwards and forwards" I think we're good :) (I agree that we don't care too much :)). |
||
'memory_depth': float("inf"), | ||
'stochastic': False, | ||
'makes_use_of': set(), | ||
'long_run_time': False, | ||
|
@@ -60,7 +60,7 @@ class ProtectedMindReader(MindReader): | |
|
||
name = 'Protected Mind Reader' | ||
classifier = { | ||
'memory_depth': -10, | ||
'memory_depth': float("inf"), | ||
'stochastic': False, | ||
'makes_use_of': set(), | ||
'long_run_time': False, | ||
|
@@ -90,7 +90,7 @@ class MirrorMindReader(ProtectedMindReader): | |
name = 'Mirror Mind Reader' | ||
|
||
classifier = { | ||
'memory_depth': -10, | ||
'memory_depth': float("inf"), | ||
'stochastic': False, | ||
'makes_use_of': set(), | ||
'long_run_time': False, | ||
|
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.
FYI: This one I think we did because "it looks into the future" (not suggesting we change it back necessarily).