summaryrefslogtreecommitdiffstats
path: root/.vscode/launch.json
blob: 93968924414bda6c3b02bc0d5062a4c20c7af436 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "autograder",
            "type": "python",
            "request": "launch",
            "program": "autograder.py",
            "args": [
                "--question=q7",
            ]
        },
        {
            "name": "tinyMazeSearch",
            "type": "python",
            "request": "launch",
            "program": "pacman.py",
            "args": [
                "--frameTime=0.02",
                "--pacman=SearchAgent",
                "--agentArgs=fn=tinyMazeSearch",
                "--layout=${input:mazeLayout}",
            ]
        },
        {
            "name": "depthFirstSearch",
            "type": "python",
            "request": "launch",
            "program": "pacman.py",
            "args": [
                "--frameTime=0.02",
                "--pacman=SearchAgent",
                "--agentArgs=fn=depthFirstSearch",
                "--layout=${input:mazeLayout}",
            ]
        },
        {
            "name": "breadthFirstSearch",
            "type": "python",
            "request": "launch",
            "program": "pacman.py",
            "args": [
                "--frameTime=0.02",
                "--pacman=SearchAgent",
                "--agentArgs=fn=breadthFirstSearch",
                "--layout=${input:mazeLayout}",
            ]
        },
        {
            "name": "uniformCostSearch",
            "type": "python",
            "request": "launch",
            "program": "pacman.py",
            "args": [
                "--frameTime=0.02",
                "--pacman=SearchAgent",
                "--agentArgs=fn=uniformCostSearch",
                "--layout=${input:mazeLayout}",
            ]
        },
        {
            "name": "AStarSearch",
            "type": "python",
            "request": "launch",
            "program": "pacman.py",
            "args": [
                "--frameTime=0.02",
                "--pacman=SearchAgent",
                "--agentArgs=fn=aStarSearch,heuristic=${input:heuristic}",
                "--layout=${input:mazeLayout}",
            ]
        },
        {
            "name": "UCSCorners",
            "type": "python",
            "request": "launch",
            "program": "pacman.py",
            "args": [
                "--frameTime=0.02",
                "--pacman=SearchAgent",
                "--agentArgs=fn=uniformCostSearch,prob=CornersProblem",
                "--layout=${input:cornersLayout}",
            ]
        },
        {
            "name": "AStarCorners",
            "type": "python",
            "request": "launch",
            "program": "pacman.py",
            "args": [
                "--frameTime=0.02",
                "--pacman=AStarCornersAgent",
                "--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}",
            ]
        },
        {
            "name": "AStarFoodSearchAgent",
            "type": "python",
            "request": "launch",
            "program": "pacman.py",
            "args": [
                "--frameTime=0.02",
                "--pacman=AStarFoodSearchAgent",
                "--layout=${input:foodLayout}",
            ]
        }
    ],
    "inputs": [
        {
            "id": "mazeLayout",
            "type": "pickString",
            "description": "Select the maze layout",
            "options": [
                "tinyMaze",
                "mediumMaze",
                "bigMaze"
            ],
            "default": "tinyMaze"
        },
        {
            "id": "heuristic",
            "type": "pickString",
            "description": "Select the heuristic",
            "options": [
                "nullHeuristic",
                "manhattanHeuristic",
                "euclideanHeuristic"
            ],
            "default": "nullHeuristic"
        },
        {
            "id": "cornersLayout",
            "type": "pickString",
            "description": "Select the maze layout",
            "options": [
                "tinyCorners",
                "mediumCorners",
                "bigCorners"
            ],
            "default": "tinyCorners"
        },
        {
            "id": "foodLayout",
            "type": "pickString",
            "description": "Select the maze layout",
            "options": [
                "testSearch",
                "trickySearch",
                "bigSearch"
            ],
            "default": "tinyCorners"
        }
    ]
}