Commit b6a5911e authored by Sebastien Robin's avatar Sebastien Robin

ACO: fixed score calculation

parent 6b1a795b
......@@ -46,7 +46,7 @@ class Simulation(DefaultSimulation):
#id the class is Job
if elementClass=='Dream.Job':
results=element['results']
delay = float(results.get('delay', "0"))
delay = float(results.get('completionTime', "0"))
totalDelay += delay
return totalDelay
......
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