summaryrefslogtreecommitdiffstats
path: root/.vscode
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2021-09-08 12:28:23 -0500
committerToby Vincent <tobyv13@gmail.com>2021-09-08 12:28:23 -0500
commit0fc7d46cf68ed76a1ade1037f029570f37d97161 (patch)
treec43b2ce190e589935fae1c1b10b07df5beb98e08 /.vscode
parentb66a43cd785b9fad146462ddb3d8bb752a9c37fa (diff)
baseline heuristic with score of 9508
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json30
1 files changed, 26 insertions, 4 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 4788109..af599a5 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -79,7 +79,7 @@
"--frameTime=0.02",
"--pacman=SearchAgent",
"--agentArgs=fn=uniformCostSearch,prob=CornersProblem",
- "--layout=${input:corners_mazeLayout}",
+ "--layout=${input:cornersLayout}",
]
},
{
@@ -90,7 +90,19 @@
"args": [
"--frameTime=0.02",
"--pacman=AStarCornersAgent",
- "--layout=${input:corners_mazeLayout}",
+ "--layout=${input:cornersLayout}",
+ ]
+ },
+ {
+ "name": "USCFoodSearchAgent",
+ "type": "python",
+ "request": "launch",
+ "program": "pacman.py",
+ "args": [
+ "--frameTime=0.02",
+ "--pacman=SearchAgent",
+ "--agentArgs=fn=uniformCostSearch,prob=FoodSearchProblem",
+ "--layout=${input:foodLayout}",
]
},
{
@@ -101,7 +113,7 @@
"args": [
"--frameTime=0.02",
"--pacman=AStarFoodSearchAgent",
- "--layout=${input:corners_mazeLayout}",
+ "--layout=${input:foodLayout}",
]
}
],
@@ -129,7 +141,7 @@
"default": "nullHeuristic"
},
{
- "id": "corners_mazeLayout",
+ "id": "cornersLayout",
"type": "pickString",
"description": "Select the maze layout",
"options": [
@@ -138,6 +150,16 @@
"bigCorners"
],
"default": "tinyCorners"
+ },
+ {
+ "id": "foodLayout",
+ "type": "pickString",
+ "description": "Select the maze layout",
+ "options": [
+ "testSearch",
+ "trickySearch"
+ ],
+ "default": "tinyCorners"
}
]
} \ No newline at end of file