From 7c606dd359b88791846917d4363982ae6b7cfe8c Mon Sep 17 00:00:00 2001 From: Toru Seo <34780089+toruseo@users.noreply.github.com> Date: Tue, 25 Jun 2024 10:40:19 +0900 Subject: [PATCH 1/2] relax taxi test --- tests/test_verification_taxi.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_verification_taxi.py b/tests/test_verification_taxi.py index 9960a81..74d1c9b 100644 --- a/tests/test_verification_taxi.py +++ b/tests/test_verification_taxi.py @@ -22,7 +22,7 @@ def equal_tolerance(val, check, rel_tol=0.1, abs_tol=0.0): q^* = 0.8 """ -@pytest.mark.flaky(reruns=5) +@pytest.mark.flaky(reruns=10) def test_taxi_small_scale(): W = World( name="", @@ -84,7 +84,7 @@ def test_taxi_small_scale(): assert equal_tolerance(Handler.travel_times[4], 600, rel_tol=0.3) assert equal_tolerance(Handler.travel_times[5], 600, rel_tol=0.3) -@pytest.mark.flaky(reruns=5) +@pytest.mark.flaky(reruns=10) def test_taxi_small_scale_mixed_mode(): # World definition W = World( @@ -155,7 +155,7 @@ def test_taxi_small_scale_mixed_mode(): assert equal_tolerance(Handler.travel_times[4], 600, rel_tol=0.3) assert equal_tolerance(Handler.travel_times[5], 600, rel_tol=0.3) -@pytest.mark.flaky(reruns=5) +@pytest.mark.flaky(reruns=10) def test_taxi_large_scale_mixed_mode_noncongested(): # World definition From 77592389868b0b286eb4fc7c9632efd1b55f3789 Mon Sep 17 00:00:00 2001 From: Toru Seo <34780089+toruseo@users.noreply.github.com> Date: Thu, 4 Jul 2024 13:48:19 +0900 Subject: [PATCH 2/2] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 4871763..2f2ab20 100644 --- a/README.md +++ b/README.md @@ -215,6 +215,8 @@ When publishing works based on UXsim, please cite: - Toru Seo. [Macroscopic Traffic Flow Simulation: Fundamental Mathematical Theory and Python Implementation](https://toruseo.github.io/misc/MacroTrafficSim_English_summary.pdf). Corona Publishing Co., Ltd., 2023. - Toru Seo. [UXsim: An open source macroscopic and mesoscopic traffic simulator in Python-a technical overview](http://dx.doi.org/10.48550/arXiv.2309.17114). arXiv preprint arXiv: 2309.17114, 2023 +Works using UXsim is summarized on the [Github Wiki page](https://github.com/toruseo/UXsim/wiki). Please feel free to edit. + ## Contributing and Discussion Contributions are welcome!