diff --git a/pydocs/pypml.ParkingMonitor.html b/pydocs/pypml.ParkingMonitor.html index b556dfd..7266fe5 100644 --- a/pydocs/pypml.ParkingMonitor.html +++ b/pydocs/pypml.ParkingMonitor.html @@ -9,7 +9,9 @@ pypml.ParkingMonitor = class ParkingMonitor(traci.StepListener)     -SUMO StepListener class for the parking monitoring.
 
+pypml.ParkingMonitor(traci_handler, options)

+SUMO StepListener class for the parking monitoring.
 
 
Method resolution order:
ParkingMonitor
@@ -18,15 +20,15 @@

Methods defined here:
-
__init__(self, traci_handler, options, time=0.0)
Initialize the knowlegde base for the parking monitor.
+
__init__(self, traci_handler, options)
Initialize the knowlegde base for the parking monitor.
 
traci_handler: already initialized TraCI socket that is going to be used by PyPML
options:       in order to reduce the number of parameters and increase the flexibility,
               the complete initialization is done using a dict()
-time:          beginning of the simulation in seconds (for statistical and logging purposes)
 
Options format:
{
+    'seed': Integer. Initialization seed for numpy.random.RandomState.
    'addStepListener': Boolean. Ff True, pypml is added as step listener in SUMO.
                       In case it's False the function step() must be called by hand every
                       simulation step.