Initial commit

This commit is contained in:
Arjun Patel
2019-03-07 12:19:28 -08:00
commit 172b7c7dd3
122 changed files with 20446 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
# This is the solution file for test_cases/q2/1-bridge-grid.test.
# File intentionally blank.
+29
View File
@@ -0,0 +1,29 @@
class: "GridPolicyTest"
# Function in module in analysis that returns (discount, noise)
parameterFn: "question2"
question2: "true"
# GridWorld specification
# _ is empty space
# numbers are terminal states with that value
# # is a wall
# S is a start state
#
grid: """
# -100 -100 -100 -100 -100 #
1 S _ _ _ _ 10
# -100 -100 -100 -100 -100 #
"""
gridName: "bridgeGrid"
# Policy specification
# _ policy choice not checked
# N, E, S, W policy action must be north, east, south, west
#
policy: """
_ _ _ _ _ _ _
_ E _ _ _ _ _
_ _ _ _ _ _ _
"""
+2
View File
@@ -0,0 +1,2 @@
max_points: "1"
class: "PassAllTestsQuestion"