aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode
diff options
context:
space:
mode:
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json44
1 files changed, 42 insertions, 2 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 17e15f2..1363c44 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -5,11 +5,51 @@
"version": "0.2.0",
"configurations": [
{
- "name": "Python: Current File",
+ "name": "Server",
"type": "python",
"request": "launch",
- "program": "${file}",
+ "program": "${workspaceFolder}/python/dotsandboxes/dotsandboxesserver.py",
+ "args": [
+ "8080"
+ ],
"console": "integratedTerminal"
+ },
+ {
+ "name": "MCTS",
+ "type": "python",
+ "request": "launch",
+ "program": "${workspaceFolder}/python/agent_MCTS.py",
+ "args": [
+ "10001",
+ ],
+ "console": "integratedTerminal"
+ },
+ {
+ "name": "Random",
+ "type": "python",
+ "request": "launch",
+ "program": "${workspaceFolder}/python/dotsandboxes/dotsandboxesagent.py",
+ "args": [
+ "10002",
+ ],
+ "console": "integratedTerminal"
+ },
+ //Basically a constructor
+ // {
+ // "name": "AB",
+ // "type": "python",
+ // "request": "launch",
+ // "program": "${workspaceFolder}/python/agent_AB.py",
+ // "args": [
+ // "10003",
+ // ],
+ // "console": "integratedTerminal"
+ // },
+
+ ], "compounds": [
+ {
+ "name": "Basic Combination (TEST)",
+ "configurations": ["Server", "MCTS", "Random"]
}
]
} \ No newline at end of file