TravelModellingGroup / TMGToolbox

Python tools for INRO Inc.'s Emme software
GNU General Public License v3.0
34 stars 17 forks source link

Fix for Transit Background. #193

Closed JamesVaughan closed 2 years ago

JamesVaughan commented 2 years ago

Currently when calculating Background Transit demand in road assignment the calculation ttf >= x ttf <= y is used. This was assumed to be parsed as (ttf >= x) (ttf <= y) in EMME however it was parsed as (ttf >= x * tff) <= y. This patch makes the first expression explicit.