.run()
PLANit method
Description
This .run() method conducts the actual traffic assignment run. Make sure all configuration has been applied before calling this method. Results are only available after invoking this method.
Signature
.run()
Return type
None
Example 1
from planit import *
# prep
planit_instance = PLANit()
planit_instance.set(TrafficAssignment.TRADITIONAL_STATIC)
#
# <perform further configuration here>
#
# conduct the simulation
planit_instance.run()
#
# <do something with results>
#
See also
N/A
Source code
Class PLANit
in PLANit.py