summaryrefslogtreecommitdiffstats
path: root/test_cases/q4/3-one-ghost-4level.test
diff options
context:
space:
mode:
authorNeil Kollack <nkollack@gmail.com>2021-09-28 14:27:45 -0500
committerNeil Kollack <nkollack@gmail.com>2021-09-28 14:27:45 -0500
commitdd3dda9dcbb6bff01d066925757ec944621dc704 (patch)
tree3b30a7c4973892c78a4f215e92ac6426f9e7fc5d /test_cases/q4/3-one-ghost-4level.test
parent41406c7ff0ff96998978e520f5c1a1f3874c3bd4 (diff)
intial commit
Diffstat (limited to 'test_cases/q4/3-one-ghost-4level.test')
-rw-r--r--test_cases/q4/3-one-ghost-4level.test79
1 files changed, 79 insertions, 0 deletions
diff --git a/test_cases/q4/3-one-ghost-4level.test b/test_cases/q4/3-one-ghost-4level.test
new file mode 100644
index 0000000..6490a48
--- /dev/null
+++ b/test_cases/q4/3-one-ghost-4level.test
@@ -0,0 +1,79 @@
+class: "GraphGameTreeTest"
+alg: "ExpectimaxAgent"
+depth: "4"
+
+diagram: """
+ /-----a------\
+ / \
+ / \
+ b1 b2
+ / \ / \
+ c1 c2 c3 c4
+ / \ / \ / \ / \
+ d1 d2 d3 d4 d5 d6 d7 d8
+/ \ / \ / \ / \ / \ / \ / \ / \
+A B C D E F G H I J K L M N O P
+3 13 5 9 10 11 6 8 1 0 4 7 12 15 2 14
+
+a - max
+b - exp
+c - max
+d - exp
+"""
+num_agents: "2"
+
+start_state: "a"
+win_states: "A B C D E F G H I J K L M N O P"
+lose_states: ""
+
+successors: """
+a Left b1
+a Right b2
+b1 Left c1
+b1 Right c2
+b2 Left c3
+b2 Right c4
+c1 Left d1
+c1 Right d2
+c2 Left d3
+c2 Right d4
+c3 Left d5
+c3 Right d6
+c4 Left d7
+c4 Right d8
+d1 Left A
+d1 Right B
+d2 Left C
+d2 Right D
+d3 Left E
+d3 Right F
+d4 Left G
+d4 Right H
+d5 Left I
+d5 Right J
+d6 Left K
+d6 Right L
+d7 Left M
+d7 Right N
+d8 Left O
+d8 Right P
+"""
+
+evaluation: """
+A 3.0
+B 13.0
+C 5.0
+D 9.0
+E 10.0
+F 11.0
+G 6.0
+H 8.0
+I 1.0
+J 0.0
+K 4.0
+L 7.0
+M 12.0
+N 15.0
+O 2.0
+P 14.0
+"""