summaryrefslogtreecommitdiffstats
path: root/test_cases/q2/6-tied-root.test
blob: 98cc0120bee558a04d35fce76f5c704168248c0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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"

successors: """
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
"""