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,31 @@
class: "GraphGameTreeTest"
alg: "AlphaBetaAgent"
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
"""