You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
435 B
31 lines
435 B
class: "GraphGameTreeTest"
|
|
alg: "ExpectimaxAgent"
|
|
depth: "2"
|
|
|
|
diagram: """
|
|
root
|
|
/ \
|
|
lose1 lose2
|
|
1 0
|
|
|
|
If your algorithm is returning a different
|
|
action, make sure you are calling the
|
|
evaluation function on losing states.
|
|
"""
|
|
num_agents: "2"
|
|
|
|
start_state: "root"
|
|
win_states: ""
|
|
lose_states: "lose1 lose2"
|
|
|
|
successors: """
|
|
root Left lose1
|
|
root Right lose2
|
|
"""
|
|
|
|
evaluation: """
|
|
lose1 1.0
|
|
lose2 0.0
|
|
"""
|
|
|