forked from p7px8vou9/AI_learning
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
427 B
31 lines
427 B
3 years ago
|
class: "GraphGameTreeTest"
|
||
|
alg: "AlphaBetaAgent"
|
||
|
depth: "2"
|
||
|
|
||
|
diagram: """
|
||
|
root
|
||
|
/ \
|
||
|
win1 win2
|
||
|
0 1
|
||
|
|
||
|
If your algorithm is returning a different
|
||
|
action, make sure you are calling the
|
||
|
evaluation function on winning states.
|
||
|
"""
|
||
|
num_agents: "2"
|
||
|
|
||
|
start_state: "root"
|
||
|
win_states: "win1 win2"
|
||
|
lose_states: ""
|
||
|
|
||
|
successors: """
|
||
|
root Left win1
|
||
|
root Right win2
|
||
|
"""
|
||
|
|
||
|
evaluation: """
|
||
|
win1 0.0
|
||
|
win2 1.0
|
||
|
"""
|
||
|
|