diff options
author | Matt Strapp <strap012@umn.edu> | 2021-04-29 11:31:53 -0500 |
---|---|---|
committer | Matt Strapp <strap012@umn.edu> | 2021-04-29 11:31:53 -0500 |
commit | 5f5c852639df810b267313f8514ce132ced1e29a (patch) | |
tree | 14d992b95a4c6e1d86f4dbadf0ef506b76906627 | |
parent | Increment version (diff) | |
download | csci4511w-5f5c852639df810b267313f8514ce132ced1e29a.tar csci4511w-5f5c852639df810b267313f8514ce132ced1e29a.tar.gz csci4511w-5f5c852639df810b267313f8514ce132ced1e29a.tar.bz2 csci4511w-5f5c852639df810b267313f8514ce132ced1e29a.tar.lz csci4511w-5f5c852639df810b267313f8514ce132ced1e29a.tar.xz csci4511w-5f5c852639df810b267313f8514ce132ced1e29a.tar.zst csci4511w-5f5c852639df810b267313f8514ce132ced1e29a.zip |
Fix stupid bug involving duplicate agents
-rw-r--r-- | output.csv | 0 | ||||
-rwxr-xr-x | start.sh | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/output.csv b/output.csv new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/output.csv @@ -23,7 +23,7 @@ do (python3 python/agent_MCTS.py $PORT) >> $a.log & ;; 3) echo "AB Agent running on ws://127.0.0.1:$PORT" - (python3 python/agent_MCTS.py $PORT) >> $a.log & + (python3 python/agent_AB.py $PORT) >> $a.log & ;; *) echo "Invalid input. Human player assumed. Undefined behavior will likely occur because I am lazy." ;; |