diff options
author | Matt Strapp <strap012@umn.edu> | 2021-04-30 14:58:10 -0500 |
---|---|---|
committer | Matt Strapp <strap012@umn.edu> | 2021-04-30 14:58:10 -0500 |
commit | 7aab80b1c3322b03f57f0ba2040e72c0ed3d6d6e (patch) | |
tree | 66331dd361879c6c9163b2df425ed182d08406c3 /start.sh | |
parent | add data (diff) | |
download | csci4511w-7aab80b1c3322b03f57f0ba2040e72c0ed3d6d6e.tar csci4511w-7aab80b1c3322b03f57f0ba2040e72c0ed3d6d6e.tar.gz csci4511w-7aab80b1c3322b03f57f0ba2040e72c0ed3d6d6e.tar.bz2 csci4511w-7aab80b1c3322b03f57f0ba2040e72c0ed3d6d6e.tar.lz csci4511w-7aab80b1c3322b03f57f0ba2040e72c0ed3d6d6e.tar.xz csci4511w-7aab80b1c3322b03f57f0ba2040e72c0ed3d6d6e.tar.zst csci4511w-7aab80b1c3322b03f57f0ba2040e72c0ed3d6d6e.zip |
Fix double adding
Diffstat (limited to '')
-rwxr-xr-x | start.sh | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -14,7 +14,6 @@ while getopts ':w:p:h:' opt; do exit 1;; *) echo "Usage: ./start.sh -w (web port) -p (starting agent port)" exit 1;; - esac done @@ -24,7 +23,6 @@ PORT=`expr $PORT - 1`; for a in 1 2 do - ((PORT=PORT+1)); echo "Available Agents:" echo "1: Random" echo "2: Monte Carlo Tree Search" |