aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode
diff options
context:
space:
mode:
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json16
1 files changed, 13 insertions, 3 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 61bf414..7fd8538 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -26,12 +26,22 @@
"console": "integratedTerminal"
},
{
+ "name": "MCTS 2",
+ "type": "python",
+ "request": "launch",
+ "program": "${workspaceFolder}/python/agent_MCTS.py",
+ "args": [
+ "10002",
+ ],
+ "console": "integratedTerminal"
+ },
+ {
"name": "Random",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/python/dotsandboxes/dotsandboxesagent.py",
"args": [
- "10002",
+ "10003",
],
"console": "integratedTerminal"
},
@@ -42,7 +52,7 @@
"request": "launch",
"program": "${workspaceFolder}/python/agent_AB.py",
"args": [
- "10003",
+ "10004",
],
"console": "integratedTerminal"
},
@@ -50,7 +60,7 @@
], "compounds": [
{
"name": "Basic Combination (TEST)",
- "configurations": ["Server", "MCTS", "Random", "AB"]
+ "configurations": ["Server", "MCTS", "MCTS 2", "Random", "AB"]
}
]
} \ No newline at end of file