Commit c0999357 authored by Matthew Hausknecht's avatar Matthew Hausknecht

Remove numOpponents from python_agents_eps_3v3 example.

parent eff445fb
...@@ -3,9 +3,9 @@ ...@@ -3,9 +3,9 @@
./bin/HFO --offense-agents=2 --defense-npcs=3 --offense-npcs=1 --trials 20 --headless & ./bin/HFO --offense-agents=2 --defense-npcs=3 --offense-npcs=1 --trials 20 --headless &
sleep 5 sleep 5
# -x is needed to skip first line - otherwise whatever default python version is will run # -x is needed to skip first line - otherwise whatever default python version is will run
python2.7 -x ./example/high_level_custom_agent.py --port 6000 &> agent1.txt & python -x ./example/high_level_custom_agent.py --port 6000 &> agent1.txt &
sleep 5 sleep 5
python3 -x ./example/high_level_custom_agent.py --port 6000 &> agent2.txt & python -x ./example/high_level_custom_agent.py --port 6000 &> agent2.txt &
# The magic line # The magic line
# $$ holds the PID for this script # $$ holds the PID for this script
......
...@@ -3,9 +3,9 @@ ...@@ -3,9 +3,9 @@
./bin/HFO --offense-agents=2 --defense-npcs=3 --offense-npcs=1 --trials 20 --headless & ./bin/HFO --offense-agents=2 --defense-npcs=3 --offense-npcs=1 --trials 20 --headless &
sleep 5 sleep 5
# -x is needed to skip first line - otherwise whatever default python version is will run # -x is needed to skip first line - otherwise whatever default python version is will run
python2.7 -x ./example/high_level_custom_agent.py --eps 0.2 --numTeammates=2 --numOpponents=3 --port 6000 &> agent1.txt & python -x ./example/high_level_custom_agent.py --eps 0.2 --numTeammates=2 --port 6000 &> agent1.txt &
sleep 5 sleep 5
python3 -x ./example/high_level_custom_agent.py --eps 0.2 --numTeammates=2 --numOpponents=3 --port 6000 &> agent2.txt & python -x ./example/high_level_custom_agent.py --eps 0.2 --numTeammates=2 --port 6000 &> agent2.txt &
# The magic line # The magic line
# $$ holds the PID for this script # $$ holds the PID for this script
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment