matsim-vsp / parallel_qsim_rust

Parallel and distributed implementation of the Qsim in Rust
8 stars 0 forks source link

Make travel time aggregation faster #85

Closed paulheinr closed 1 year ago

paulheinr commented 1 year ago

In #70, each partition is checking whether it has to reset travel times or not, if there was no travel time collected. (simulation\routing\travel_times_collecting_road_router.rs) For now, there is used Set::difference, which is not needed. One can iterate over all links and decide what to do.