Skip to content

Commit

Permalink
fix(reproduction): corrects arrivals from int to float, else model error
Browse files Browse the repository at this point in the history
  • Loading branch information
amyheather committed Oct 3, 2024
1 parent 27f3e28 commit 0ede21f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reproduction/python_scripts/PODSimulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def __init__(self, capacities, parameterReader=None):
"""
self.maxTime = 60# 24*60=1440 minutes
self.maxNumber = 500000 #entities
self.meanTBA = 1/100 #mean time between arrivals, minutes btw entities
self.meanTBA = 1/float(100) #mean time between arrivals, minutes btw entities

self.capacities = capacities
self.parameterReader = parameterReader
Expand Down

0 comments on commit 0ede21f

Please sign in to comment.