-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Switch matsim version to 2024 #47
Conversation
* remove compilation errors * Switch to junit 5 Test fails, because events are different
Looking at the code, this is the equil scenario, with everybody starting on the central route. The test only does one iteration, during which 10% of agents should be replanned onto a different route. The excerpt look like a different set of 10% was picked. If this assessment is correct, then picking a different 10% is not a problem content-wise. However, why do we get a different random number sequence? And why did that not happen with tests in the matsim core? (I think that KMT and I actually changed code around the |
I dug into that problem. The test starts failing with this PR in matsim-libs: matsim-org/matsim-libs#2827, which changes the default routing algorithm. It's a bit strange that this effects the routing results. However, some test files had to be changed in that PR. @mrieser Do you remember why? And what do you think about the changing routes here? |
Update: With Interestingly, in the test case introduced in matsim-org/matsim-libs#3259, both algorithms find the same route (using links 2 and 11). I don't know why |
Switch matsim version to 2024
Test fails, because events are different