From: Sam Moore Date: Sat, 28 Apr 2012 14:39:17 +0000 (+0800) Subject: Oh god, I was assuming scores were integers X-Git-Url: https://git.ucc.asn.au/?p=progcomp2012.git;a=commitdiff_plain;h=3692d6226e327959976843713b678e52a1302c29 Oh god, I was assuming scores were integers And then I made them all floats FUCK FUCK FUCK FUCK FUCK --- diff --git a/judge/simulator/simulate.py b/judge/simulator/simulate.py index e87259e..7664a2c 100755 --- a/judge/simulator/simulate.py +++ b/judge/simulator/simulate.py @@ -206,7 +206,7 @@ for agent in agents: agentFile.write(line) line = oldFile.readline() values = line.split(' ') - agent["totalScore"] += int(values[2].strip()) + agent["totalScore"] += float(values[2].strip()) agent["Wins"] += int(values[5].strip()) agent["Losses"] += int(values[8].strip()) agent["Draws"] += int(values[11].strip())