summaryrefslogtreecommitdiffstats
path: root/test_cases/q3/1-5-minmax.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/q3/1-5-minmax.test
parenteb2bb60f1ce8cb65ff05c9eb73c19255c574e850 (diff)
moved python files into src folderHEADmain
Diffstat (limited to 'test_cases/q3/1-5-minmax.test')
-rw-r--r--test_cases/q3/1-5-minmax.test75
1 files changed, 0 insertions, 75 deletions
diff --git a/test_cases/q3/1-5-minmax.test b/test_cases/q3/1-5-minmax.test
deleted file mode 100644
index 2d57290..0000000
--- a/test_cases/q3/1-5-minmax.test
+++ /dev/null
@@ -1,75 +0,0 @@
-class: "GraphGameTreeTest"
-alg: "AlphaBetaAgent"
-depth: "4"
-
-diagram: """
- /-----a------\
- / \
- / \
- b1 b2
- / \ |
- c1 c2 cx
- / \ / \ |
- d1 d2 d3 d4 dx
- / \ / \ / \ / \ |
- A B C D E F G H Z
--3 13 5 9 10 3 -6 8 3.01
-
-a - max
-b - min
-c - max
-d - min
-
-Note the minimax value of b1 is 3.
-"""
-num_agents: "2"
-
-start_state: "a"
-win_states: "A B C D E F G H I J K L M N O P Z"
-lose_states: ""
-
-successors: """
-a Left b1
-a Right b2
-b1 Left c1
-b1 Right c2
-b2 Down cx
-c1 Left d1
-c1 Right d2
-c2 Left d3
-c2 Right d4
-c3 Left d5
-c3 Right d6
-c4 Left d7
-c4 Right d8
-cx Down dx
-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
-dx Down Z
-"""
-
-evaluation: """
-A -3.0
-B 13.0
-C 5.0
-D 9.0
-E 10.0
-F 3.0
-G -6.0
-H 8.0
-Z 3.01
-"""