Feat: hw2 done

This commit is contained in:
2026-04-06 05:24:23 +08:00
commit 37c264e26e
214 changed files with 12807 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
class: "GraphGameTreeTest"
alg: "MinimaxAgent"
depth: "3"
diagram: """
max
/ \
min1 min2
| / \
A B C
10 10 0
"""
num_agents: "2"
start_state: "max"
win_states: "A B"
lose_states: "C"
children: """
max Left min1
max Right min2
min1 Down A
min2 Left B
min2 Right C
"""
evaluation: """
A 10.0
B 10.0
C 0.0
"""