Added problem 2 and solve question 1 reflex agent.

This commit is contained in:
2021-11-08 18:31:15 -05:00
parent fd8dd8ae35
commit 11dcc491a2
186 changed files with 11659 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
class: "GraphGameTreeTest"
alg: "AlphaBetaAgent"
depth: "3"
diagram: """
root
/ \
minLeft minRight
/ \ / \
A B C deeper
4 3 2 |
D
1000
"""
num_agents: "2"
start_state: "root"
win_states: "A C"
lose_states: "B D"
successors: """
root pacLeft minLeft
root pacRight minRight
minLeft gLeft A
minLeft gRight B
minRight gLeft C
minRight gRight deeper
deeper pacLeft D
"""
evaluation: """
A 4.0
B 3.0
C 2.0
D 1000.0
"""