From 0fc7d46cf68ed76a1ade1037f029570f37d97161 Mon Sep 17 00:00:00 2001 From: Toby Vincent Date: Wed, 8 Sep 2021 12:28:23 -0500 Subject: baseline heuristic with score of 9508 --- .vscode/launch.json | 30 ++++++++++++++++++++++++++---- 1 file changed, 26 insertions(+), 4 deletions(-) (limited to '.vscode/launch.json') 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 -- cgit v1.2.3-70-g09d2