You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
width, height = [int(i) for i in input().split()]
while True:
my_matter, opp_matter = [int(i) for i in input().split()]
for row in range(height):
for col in range(width):
(
scrap_amount,
owner,
units,
recycler,
can_build,
can_spawn,
in_range_of_recycler,
) = [int(k) for k in input().split()]
print("WAIT")
Adding -i 0 to set the seed for consistent testing also double the number of games as if the -s arg was present. This double the testing time for no reason. Failed games, for a timeout, show a command to reproduce the failed game that contains -s in it (don't know if that helps).
Cheers
The text was updated successfully, but these errors were encountered:
Hello, weird double number of games when setting the initial seed.
Steps to reproduce:
java -jar brutal.jar -r "java -jar -Dleague.level=2 cg_fall_2022.jar" -p1 "python3 do_nothing_bot.py" -p2 "python3 do_nothing_bot.py" -n 1 -t 1
java -jar brutal.jar -r "java -jar -Dleague.level=2 cg_fall_2022.jar" -p1 "python3 do_nothing_bot.py" -p2 "python3 do_nothing_bot.py" -n 1 -t 1 -i 0
The
do_nothing_bot.py
:Adding
-i 0
to set the seed for consistent testing also double the number of games as if the-s
arg was present. This double the testing time for no reason. Failed games, for a timeout, show a command to reproduce the failed game that contains-s
in it (don't know if that helps).Cheers
The text was updated successfully, but these errors were encountered: