summaryrefslogtreecommitdiffstats
path: root/test_cases/q4/0-expectimax1.test
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2021-09-30 13:41:18 -0500
committerToby Vincent <tobyv13@gmail.com>2021-09-30 13:41:18 -0500
commitb3359393525b827d75a5b0745c3d1d8c9362dc5e (patch)
tree00c1244674ff311e79c0db96778054a9432bc3ec /test_cases/q4/0-expectimax1.test
parenteb2bb60f1ce8cb65ff05c9eb73c19255c574e850 (diff)
moved python files into src folderHEADmain
Diffstat (limited to 'test_cases/q4/0-expectimax1.test')
-rw-r--r--test_cases/q4/0-expectimax1.test48
1 files changed, 0 insertions, 48 deletions
diff --git a/test_cases/q4/0-expectimax1.test b/test_cases/q4/0-expectimax1.test
deleted file mode 100644
index deee59a..0000000
--- a/test_cases/q4/0-expectimax1.test
+++ /dev/null
@@ -1,48 +0,0 @@
-class: "GraphGameTreeTest"
-alg: "ExpectimaxAgent"
-depth: "2"
-
-# Tree adapted from lecture 6 slides
-diagram: """
- max
- /-/ | \--\
- / | \
- / | \
- exp1 exp2 exp3
- /|\ /|\ /|\
- / | \ / | \ / | \
-A B C D E F G H I
-3 12 8 2 4 6 14 5 2
-"""
-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 8.0
-D 2.0
-E 4.0
-F 6.0
-G 14.0
-H 5.0
-I 2.0
-"""