Eclipse SUMO is an open source, highly portable, microscopic and continuous traffic simulation package designed to handle large networks. It allows for intermodal simulation including pedestrians and comes with a large set of tools for scenario creation.
The function optimize makes use of SciPy's linprog procedure. Since the results can be real numbers, they have to be rounded. A more natural solution would be to use the milp procedure, which has be created for that purpose.
The function
optimize
makes use of SciPy'slinprog
procedure. Since the results can be real numbers, they have to be rounded. A more natural solution would be to use themilp
procedure, which has be created for that purpose.