49 lines
668 B
Plaintext
49 lines
668 B
Plaintext
|
class: "GraphGameTreeTest"
|
||
|
alg: "ExpectimaxAgent"
|
||
|
depth: "2"
|
||
|
|
||
|
# Tree from lecture 7 slides
|
||
|
diagram: """
|
||
|
max
|
||
|
/-/ | \--\
|
||
|
/ | \
|
||
|
/ | \
|
||
|
exp1 exp2 exp3
|
||
|
/|\ /|\ /|\
|
||
|
/ | \ / | \ / | \
|
||
|
A B C D E F G H I
|
||
|
3 12 9 2 4 6 15 6 0
|
||
|
"""
|
||
|
num_agents: "2"
|
||
|
|
||
|
start_state: "max"
|
||
|
win_states: "A B C D E F G H I"
|
||
|
lose_states: ""
|
||
|
|
||
|
successors: """
|
||
|
max Left exp1
|
||
|
max Center exp2
|
||
|
max Right exp3
|
||
|
exp1 Left A
|
||
|
exp1 Center B
|
||
|
exp1 Right C
|
||
|
exp2 Left D
|
||
|
exp2 Center E
|
||
|
exp2 Right F
|
||
|
exp3 Left G
|
||
|
exp3 Center H
|
||
|
exp3 Right I
|
||
|
"""
|
||
|
|
||
|
evaluation: """
|
||
|
A 3.0
|
||
|
B 12.0
|
||
|
C 9.0
|
||
|
D 2.0
|
||
|
E 4.0
|
||
|
F 6.0
|
||
|
G 15.0
|
||
|
H 6.0
|
||
|
I 0.0
|
||
|
"""
|