This commit is contained in:
2023-05-23 15:52:09 +08:00
parent e8f9c8a287
commit 663edbb5e2
88 changed files with 6250 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
__all__ = [
'Agent',
]
# tag::agent[]
class Agent:
def __init__(self):
pass
def select_move(self, game_state):
raise NotImplementedError()
# end::agent[]
def diagnostics(self):
return {}