diff options
author | Matt Strapp <strap012@umn.edu> | 2021-04-26 14:44:57 -0500 |
---|---|---|
committer | Matt Strapp <strap012@umn.edu> | 2021-04-26 15:03:24 -0500 |
commit | 8774432f5b7e87fc9647c97022d38673f66a8b2f (patch) | |
tree | 6b93db7fc54391d79a60d3ac9ed2662e1a2b5b3c /.vscode/launch.json | |
parent | Rebase newer branch (diff) | |
download | csci4511w-8774432f5b7e87fc9647c97022d38673f66a8b2f.tar csci4511w-8774432f5b7e87fc9647c97022d38673f66a8b2f.tar.gz csci4511w-8774432f5b7e87fc9647c97022d38673f66a8b2f.tar.bz2 csci4511w-8774432f5b7e87fc9647c97022d38673f66a8b2f.tar.lz csci4511w-8774432f5b7e87fc9647c97022d38673f66a8b2f.tar.xz csci4511w-8774432f5b7e87fc9647c97022d38673f66a8b2f.tar.zst csci4511w-8774432f5b7e87fc9647c97022d38673f66a8b2f.zip |
Add debug configs,
Diffstat (limited to '')
-rw-r--r-- | .vscode/launch.json | 44 |
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 |