changeset 36:571b11304ec9

corrected bug
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Mon, 12 Apr 2010 13:40:05 -0400
parents 8cafee54466f
children 911b52744ceb
files python/traffic_engineering.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/python/traffic_engineering.py	Mon Apr 12 11:18:19 2010 -0400
+++ b/python/traffic_engineering.py	Mon Apr 12 13:40:05 2010 -0400
@@ -104,7 +104,7 @@
     Deceleration is positive
     All variables should be in the same units'''
     if deceleration > 0:
-        return [perceptionReactionTime+initialSpeed/(2*deceleration), (intersectionLength+vehicleAverageLength)/initialSpeed]
+        return [perceptionReactionTime+float(initialSpeed)/(2*deceleration), float(intersectionLength+vehicleAverageLength)/initialSpeed]
     else:
         print 'Issue deceleration should be strictly positive'
         return None