From 8774432f5b7e87fc9647c97022d38673f66a8b2f Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Mon, 26 Apr 2021 14:44:57 -0500 Subject: Add debug configs, --- .vscode/launch.json | 44 ++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 42 insertions(+), 2 deletions(-) (limited to '.vscode/launch.json') 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 -- cgit v1.2.3