├── .gitattributes ├── .github ├── .coveragerc ├── CONTRIBUTING.md ├── codecov.yml ├── copilot-instructions.md ├── dependabot.yml └── workflows │ ├── measure-coverage.yml │ ├── run-examples.yml │ ├── run-notebook-demos-extra.yml │ ├── run-notebook-demos.yml │ ├── test-functions-python313.yml │ ├── test-functions.yml │ ├── test-pip.yml │ └── verify-module.yml ├── .gitignore ├── CITATION.cff ├── LICENSE ├── MANIFEST.in ├── README.jp.md ├── README.md ├── dat ├── README.md ├── chicago_sketch.uxsim_scenario ├── sfnetwork.uxsim_scenario ├── siouxfalls_demand.csv ├── siouxfalls_demand_short.csv ├── siouxfalls_links.csv ├── siouxfalls_nodes.csv ├── tokyo_arterial_links.csv ├── tokyo_arterial_nodes.csv ├── uroboros_demand.csv ├── uroboros_links.csv └── uroboros_nodes.csv ├── demos_and_examples ├── README.md ├── dat │ ├── README.md │ ├── chicago_sketch.uxsim_scenario │ ├── osm_tokyo.png │ ├── sfnetwork.uxsim_scenario │ ├── siouxfalls_demand.csv │ ├── siouxfalls_demand_short.csv │ ├── siouxfalls_links.csv │ ├── siouxfalls_nodes.csv │ ├── tokyo_arterial_links.csv │ ├── tokyo_arterial_nodes.csv │ ├── uroboros_demand.csv │ ├── uroboros_links.csv │ └── uroboros_nodes.csv ├── demo_notebook_01en.ipynb ├── demo_notebook_01jp.ipynb ├── demo_notebook_02en.ipynb ├── demo_notebook_03en_pytorch.ipynb ├── demo_notebook_04en_OpenStreetMap.ipynb ├── demo_notebook_05en_for_google_colab.ipynb ├── demo_notebook_06en_taxi_or_shared_mobility.ipynb ├── demo_notebook_08en_chicago.ipynb ├── demo_notebook_09en_dynamic_traffic_assignment.ipynb ├── demo_notebook_10en_traffic_signal_tutorial.ipynb ├── example_00en_simple.py ├── example_01en_basic.py ├── example_01jp_basic.py ├── example_02en_bottleneck.py ├── example_02jp_bottleneck.py ├── example_03en_Nguyen-Dupuis_network.py ├── example_03en_data_loading_sioux_falls_network.py ├── example_03jp_data_loading_sioux_falls_network.py ├── example_04en_automatic_network_generation.py ├── example_04jp_automatic_network_generation.py ├── example_05en_gridlock_and_prevention.py ├── example_05jp_gridlock_and_prevention.py ├── example_06en_dynamic_parameter_change.py ├── example_06jp_dynamic_parameter_change.py ├── example_07en_signal.py ├── example_07jp_signal.py ├── example_08en_signal_reactive_control.py ├── example_08jp_signal_reactive_control.py ├── example_09en_congestion_pricing_highway_toll.py ├── example_10en_signal_4legged_intersection.py ├── example_11en_signal_4legged_intersection_reactive_control.py ├── example_12en_signal_4legged_intersection_Deep_Reinforcement_Learning_pytorch_control.py ├── example_13en_multiple_signals.py ├── example_14en_multiple_signals_Deep_Reinforcement_Learning_pytorch.py ├── example_15jp_4phase_signal_japanese_style.py ├── example_16en_import_from_OpenStreetMap.py ├── example_17en_result_GUI_viewer_sioux_falls.py ├── example_18en_result_GUI_viewer_grid.py ├── example_19en_multilane_link.py ├── example_20en_taxi_or_shared_mobility.py ├── example_21en_modal_share_private_car_and_carsharing.py ├── example_23en_huge_scale_simlation_at_Chicago.py ├── example_24en_user_defined_functions.py ├── example_26en_dynamic_traffic_assignment_DUO_DUE_DSO.py ├── example_27en_interactive_simulation_by_streamlit.py └── example_27jp_interactive_simulation_by_streamlit.py ├── pyproject.toml ├── tests ├── README.md ├── dat │ ├── README.md │ ├── siouxfalls_demand.csv │ ├── siouxfalls_demand_short.csv │ ├── siouxfalls_links.csv │ ├── siouxfalls_nodes.csv │ ├── tokyo_arterial_links.csv │ ├── tokyo_arterial_nodes.csv │ ├── uroboros_demand.csv │ ├── uroboros_links.csv │ └── uroboros_nodes.csv ├── test_examples.py ├── test_notebook_demos.py ├── test_notebook_demos_extra.py ├── test_optional_functions_python313.py ├── test_other_functions.py ├── test_result_gui_viewer.py ├── test_verification_dta_solvers.py ├── test_verification_exceptional.py ├── test_verification_multilane.py ├── test_verification_node.py ├── test_verification_route_choice.py ├── test_verification_sioux_falls.py ├── test_verification_straight_road.py ├── test_verification_taxi.py └── test_wrapper_functions.py └── uxsim ├── DTAsolvers ├── ALNS.py ├── DTAsolvers.py └── __init__.py ├── OSMImporter ├── OSMImporter.py └── __init__.py ├── OSMImporter2 ├── OSMImporter2.py └── __init__.py ├── ResultGUIViewer ├── ResultGUIViewer.py └── __init__.py ├── TaxiHandler ├── TaxiHandler.py └── __init__.py ├── Utilities ├── Utilities.py └── __init__.py ├── __init__.py ├── analyzer.py ├── files ├── HackGen-Regular.ttf ├── Inconsolata.otf ├── LICENSE_of_HackGen-Regular ├── Licence_of_Inconsolata.otf.txt ├── README.md └── __init__.py ├── scenario_reader_writer.py ├── utils.py └── uxsim.py /.gitattributes: -------------------------------------------------------------------------------- 1 | demos_and_examples/*.ipynb linguist-generated -------------------------------------------------------------------------------- /.github/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = 3 | uxsim/ResultGUIViewer/* -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- 1 | comment: false -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/measure-coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/.github/workflows/measure-coverage.yml -------------------------------------------------------------------------------- /.github/workflows/run-examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/.github/workflows/run-examples.yml -------------------------------------------------------------------------------- /.github/workflows/run-notebook-demos-extra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/.github/workflows/run-notebook-demos-extra.yml -------------------------------------------------------------------------------- /.github/workflows/run-notebook-demos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/.github/workflows/run-notebook-demos.yml -------------------------------------------------------------------------------- /.github/workflows/test-functions-python313.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/.github/workflows/test-functions-python313.yml -------------------------------------------------------------------------------- /.github/workflows/test-functions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/.github/workflows/test-functions.yml -------------------------------------------------------------------------------- /.github/workflows/test-pip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/.github/workflows/test-pip.yml -------------------------------------------------------------------------------- /.github/workflows/verify-module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/.github/workflows/verify-module.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include uxsim/files/* -------------------------------------------------------------------------------- /README.jp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/README.jp.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/README.md -------------------------------------------------------------------------------- /dat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/dat/README.md -------------------------------------------------------------------------------- /dat/chicago_sketch.uxsim_scenario: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/dat/chicago_sketch.uxsim_scenario -------------------------------------------------------------------------------- /dat/sfnetwork.uxsim_scenario: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/dat/sfnetwork.uxsim_scenario -------------------------------------------------------------------------------- /dat/siouxfalls_demand.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/dat/siouxfalls_demand.csv -------------------------------------------------------------------------------- /dat/siouxfalls_demand_short.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/dat/siouxfalls_demand_short.csv -------------------------------------------------------------------------------- /dat/siouxfalls_links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/dat/siouxfalls_links.csv -------------------------------------------------------------------------------- /dat/siouxfalls_nodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/dat/siouxfalls_nodes.csv -------------------------------------------------------------------------------- /dat/tokyo_arterial_links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/dat/tokyo_arterial_links.csv -------------------------------------------------------------------------------- /dat/tokyo_arterial_nodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/dat/tokyo_arterial_nodes.csv -------------------------------------------------------------------------------- /dat/uroboros_demand.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/dat/uroboros_demand.csv -------------------------------------------------------------------------------- /dat/uroboros_links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/dat/uroboros_links.csv -------------------------------------------------------------------------------- /dat/uroboros_nodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/dat/uroboros_nodes.csv -------------------------------------------------------------------------------- /demos_and_examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/README.md -------------------------------------------------------------------------------- /demos_and_examples/dat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/dat/README.md -------------------------------------------------------------------------------- /demos_and_examples/dat/chicago_sketch.uxsim_scenario: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/dat/chicago_sketch.uxsim_scenario -------------------------------------------------------------------------------- /demos_and_examples/dat/osm_tokyo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/dat/osm_tokyo.png -------------------------------------------------------------------------------- /demos_and_examples/dat/sfnetwork.uxsim_scenario: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/dat/sfnetwork.uxsim_scenario -------------------------------------------------------------------------------- /demos_and_examples/dat/siouxfalls_demand.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/dat/siouxfalls_demand.csv -------------------------------------------------------------------------------- /demos_and_examples/dat/siouxfalls_demand_short.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/dat/siouxfalls_demand_short.csv -------------------------------------------------------------------------------- /demos_and_examples/dat/siouxfalls_links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/dat/siouxfalls_links.csv -------------------------------------------------------------------------------- /demos_and_examples/dat/siouxfalls_nodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/dat/siouxfalls_nodes.csv -------------------------------------------------------------------------------- /demos_and_examples/dat/tokyo_arterial_links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/dat/tokyo_arterial_links.csv -------------------------------------------------------------------------------- /demos_and_examples/dat/tokyo_arterial_nodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/dat/tokyo_arterial_nodes.csv -------------------------------------------------------------------------------- /demos_and_examples/dat/uroboros_demand.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/dat/uroboros_demand.csv -------------------------------------------------------------------------------- /demos_and_examples/dat/uroboros_links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/dat/uroboros_links.csv -------------------------------------------------------------------------------- /demos_and_examples/dat/uroboros_nodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/dat/uroboros_nodes.csv -------------------------------------------------------------------------------- /demos_and_examples/demo_notebook_01en.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/demo_notebook_01en.ipynb -------------------------------------------------------------------------------- /demos_and_examples/demo_notebook_01jp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/demo_notebook_01jp.ipynb -------------------------------------------------------------------------------- /demos_and_examples/demo_notebook_02en.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/demo_notebook_02en.ipynb -------------------------------------------------------------------------------- /demos_and_examples/demo_notebook_03en_pytorch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/demo_notebook_03en_pytorch.ipynb -------------------------------------------------------------------------------- /demos_and_examples/demo_notebook_04en_OpenStreetMap.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/demo_notebook_04en_OpenStreetMap.ipynb -------------------------------------------------------------------------------- /demos_and_examples/demo_notebook_05en_for_google_colab.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/demo_notebook_05en_for_google_colab.ipynb -------------------------------------------------------------------------------- /demos_and_examples/demo_notebook_06en_taxi_or_shared_mobility.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/demo_notebook_06en_taxi_or_shared_mobility.ipynb -------------------------------------------------------------------------------- /demos_and_examples/demo_notebook_08en_chicago.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/demo_notebook_08en_chicago.ipynb -------------------------------------------------------------------------------- /demos_and_examples/demo_notebook_09en_dynamic_traffic_assignment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/demo_notebook_09en_dynamic_traffic_assignment.ipynb -------------------------------------------------------------------------------- /demos_and_examples/demo_notebook_10en_traffic_signal_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/demo_notebook_10en_traffic_signal_tutorial.ipynb -------------------------------------------------------------------------------- /demos_and_examples/example_00en_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_00en_simple.py -------------------------------------------------------------------------------- /demos_and_examples/example_01en_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_01en_basic.py -------------------------------------------------------------------------------- /demos_and_examples/example_01jp_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_01jp_basic.py -------------------------------------------------------------------------------- /demos_and_examples/example_02en_bottleneck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_02en_bottleneck.py -------------------------------------------------------------------------------- /demos_and_examples/example_02jp_bottleneck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_02jp_bottleneck.py -------------------------------------------------------------------------------- /demos_and_examples/example_03en_Nguyen-Dupuis_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_03en_Nguyen-Dupuis_network.py -------------------------------------------------------------------------------- /demos_and_examples/example_03en_data_loading_sioux_falls_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_03en_data_loading_sioux_falls_network.py -------------------------------------------------------------------------------- /demos_and_examples/example_03jp_data_loading_sioux_falls_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_03jp_data_loading_sioux_falls_network.py -------------------------------------------------------------------------------- /demos_and_examples/example_04en_automatic_network_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_04en_automatic_network_generation.py -------------------------------------------------------------------------------- /demos_and_examples/example_04jp_automatic_network_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_04jp_automatic_network_generation.py -------------------------------------------------------------------------------- /demos_and_examples/example_05en_gridlock_and_prevention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_05en_gridlock_and_prevention.py -------------------------------------------------------------------------------- /demos_and_examples/example_05jp_gridlock_and_prevention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_05jp_gridlock_and_prevention.py -------------------------------------------------------------------------------- /demos_and_examples/example_06en_dynamic_parameter_change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_06en_dynamic_parameter_change.py -------------------------------------------------------------------------------- /demos_and_examples/example_06jp_dynamic_parameter_change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_06jp_dynamic_parameter_change.py -------------------------------------------------------------------------------- /demos_and_examples/example_07en_signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_07en_signal.py -------------------------------------------------------------------------------- /demos_and_examples/example_07jp_signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_07jp_signal.py -------------------------------------------------------------------------------- /demos_and_examples/example_08en_signal_reactive_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_08en_signal_reactive_control.py -------------------------------------------------------------------------------- /demos_and_examples/example_08jp_signal_reactive_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_08jp_signal_reactive_control.py -------------------------------------------------------------------------------- /demos_and_examples/example_09en_congestion_pricing_highway_toll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_09en_congestion_pricing_highway_toll.py -------------------------------------------------------------------------------- /demos_and_examples/example_10en_signal_4legged_intersection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_10en_signal_4legged_intersection.py -------------------------------------------------------------------------------- /demos_and_examples/example_11en_signal_4legged_intersection_reactive_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_11en_signal_4legged_intersection_reactive_control.py -------------------------------------------------------------------------------- /demos_and_examples/example_12en_signal_4legged_intersection_Deep_Reinforcement_Learning_pytorch_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_12en_signal_4legged_intersection_Deep_Reinforcement_Learning_pytorch_control.py -------------------------------------------------------------------------------- /demos_and_examples/example_13en_multiple_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_13en_multiple_signals.py -------------------------------------------------------------------------------- /demos_and_examples/example_14en_multiple_signals_Deep_Reinforcement_Learning_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_14en_multiple_signals_Deep_Reinforcement_Learning_pytorch.py -------------------------------------------------------------------------------- /demos_and_examples/example_15jp_4phase_signal_japanese_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_15jp_4phase_signal_japanese_style.py -------------------------------------------------------------------------------- /demos_and_examples/example_16en_import_from_OpenStreetMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_16en_import_from_OpenStreetMap.py -------------------------------------------------------------------------------- /demos_and_examples/example_17en_result_GUI_viewer_sioux_falls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_17en_result_GUI_viewer_sioux_falls.py -------------------------------------------------------------------------------- /demos_and_examples/example_18en_result_GUI_viewer_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_18en_result_GUI_viewer_grid.py -------------------------------------------------------------------------------- /demos_and_examples/example_19en_multilane_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_19en_multilane_link.py -------------------------------------------------------------------------------- /demos_and_examples/example_20en_taxi_or_shared_mobility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_20en_taxi_or_shared_mobility.py -------------------------------------------------------------------------------- /demos_and_examples/example_21en_modal_share_private_car_and_carsharing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_21en_modal_share_private_car_and_carsharing.py -------------------------------------------------------------------------------- /demos_and_examples/example_23en_huge_scale_simlation_at_Chicago.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_23en_huge_scale_simlation_at_Chicago.py -------------------------------------------------------------------------------- /demos_and_examples/example_24en_user_defined_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_24en_user_defined_functions.py -------------------------------------------------------------------------------- /demos_and_examples/example_26en_dynamic_traffic_assignment_DUO_DUE_DSO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_26en_dynamic_traffic_assignment_DUO_DUE_DSO.py -------------------------------------------------------------------------------- /demos_and_examples/example_27en_interactive_simulation_by_streamlit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_27en_interactive_simulation_by_streamlit.py -------------------------------------------------------------------------------- /demos_and_examples/example_27jp_interactive_simulation_by_streamlit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/demos_and_examples/example_27jp_interactive_simulation_by_streamlit.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/dat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/dat/README.md -------------------------------------------------------------------------------- /tests/dat/siouxfalls_demand.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/dat/siouxfalls_demand.csv -------------------------------------------------------------------------------- /tests/dat/siouxfalls_demand_short.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/dat/siouxfalls_demand_short.csv -------------------------------------------------------------------------------- /tests/dat/siouxfalls_links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/dat/siouxfalls_links.csv -------------------------------------------------------------------------------- /tests/dat/siouxfalls_nodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/dat/siouxfalls_nodes.csv -------------------------------------------------------------------------------- /tests/dat/tokyo_arterial_links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/dat/tokyo_arterial_links.csv -------------------------------------------------------------------------------- /tests/dat/tokyo_arterial_nodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/dat/tokyo_arterial_nodes.csv -------------------------------------------------------------------------------- /tests/dat/uroboros_demand.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/dat/uroboros_demand.csv -------------------------------------------------------------------------------- /tests/dat/uroboros_links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/dat/uroboros_links.csv -------------------------------------------------------------------------------- /tests/dat/uroboros_nodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/dat/uroboros_nodes.csv -------------------------------------------------------------------------------- /tests/test_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/test_examples.py -------------------------------------------------------------------------------- /tests/test_notebook_demos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/test_notebook_demos.py -------------------------------------------------------------------------------- /tests/test_notebook_demos_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/test_notebook_demos_extra.py -------------------------------------------------------------------------------- /tests/test_optional_functions_python313.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/test_optional_functions_python313.py -------------------------------------------------------------------------------- /tests/test_other_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/test_other_functions.py -------------------------------------------------------------------------------- /tests/test_result_gui_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/test_result_gui_viewer.py -------------------------------------------------------------------------------- /tests/test_verification_dta_solvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/test_verification_dta_solvers.py -------------------------------------------------------------------------------- /tests/test_verification_exceptional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/test_verification_exceptional.py -------------------------------------------------------------------------------- /tests/test_verification_multilane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/test_verification_multilane.py -------------------------------------------------------------------------------- /tests/test_verification_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/test_verification_node.py -------------------------------------------------------------------------------- /tests/test_verification_route_choice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/test_verification_route_choice.py -------------------------------------------------------------------------------- /tests/test_verification_sioux_falls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/test_verification_sioux_falls.py -------------------------------------------------------------------------------- /tests/test_verification_straight_road.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/test_verification_straight_road.py -------------------------------------------------------------------------------- /tests/test_verification_taxi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/test_verification_taxi.py -------------------------------------------------------------------------------- /tests/test_wrapper_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/tests/test_wrapper_functions.py -------------------------------------------------------------------------------- /uxsim/DTAsolvers/ALNS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/uxsim/DTAsolvers/ALNS.py -------------------------------------------------------------------------------- /uxsim/DTAsolvers/DTAsolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/uxsim/DTAsolvers/DTAsolvers.py -------------------------------------------------------------------------------- /uxsim/DTAsolvers/__init__.py: -------------------------------------------------------------------------------- 1 | from .DTAsolvers import * -------------------------------------------------------------------------------- /uxsim/OSMImporter/OSMImporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/uxsim/OSMImporter/OSMImporter.py -------------------------------------------------------------------------------- /uxsim/OSMImporter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/uxsim/OSMImporter/__init__.py -------------------------------------------------------------------------------- /uxsim/OSMImporter2/OSMImporter2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/uxsim/OSMImporter2/OSMImporter2.py -------------------------------------------------------------------------------- /uxsim/OSMImporter2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/uxsim/OSMImporter2/__init__.py -------------------------------------------------------------------------------- /uxsim/ResultGUIViewer/ResultGUIViewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/uxsim/ResultGUIViewer/ResultGUIViewer.py -------------------------------------------------------------------------------- /uxsim/ResultGUIViewer/__init__.py: -------------------------------------------------------------------------------- 1 | from .ResultGUIViewer import * -------------------------------------------------------------------------------- /uxsim/TaxiHandler/TaxiHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/uxsim/TaxiHandler/TaxiHandler.py -------------------------------------------------------------------------------- /uxsim/TaxiHandler/__init__.py: -------------------------------------------------------------------------------- 1 | from .TaxiHandler import * -------------------------------------------------------------------------------- /uxsim/Utilities/Utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/uxsim/Utilities/Utilities.py -------------------------------------------------------------------------------- /uxsim/Utilities/__init__.py: -------------------------------------------------------------------------------- 1 | from .Utilities import * -------------------------------------------------------------------------------- /uxsim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/uxsim/__init__.py -------------------------------------------------------------------------------- /uxsim/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/uxsim/analyzer.py -------------------------------------------------------------------------------- /uxsim/files/HackGen-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/uxsim/files/HackGen-Regular.ttf -------------------------------------------------------------------------------- /uxsim/files/Inconsolata.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/uxsim/files/Inconsolata.otf -------------------------------------------------------------------------------- /uxsim/files/LICENSE_of_HackGen-Regular: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/uxsim/files/LICENSE_of_HackGen-Regular -------------------------------------------------------------------------------- /uxsim/files/Licence_of_Inconsolata.otf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/uxsim/files/Licence_of_Inconsolata.otf.txt -------------------------------------------------------------------------------- /uxsim/files/README.md: -------------------------------------------------------------------------------- 1 | These are utility files required for `uxsim.py`. -------------------------------------------------------------------------------- /uxsim/files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uxsim/scenario_reader_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/uxsim/scenario_reader_writer.py -------------------------------------------------------------------------------- /uxsim/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/uxsim/utils.py -------------------------------------------------------------------------------- /uxsim/uxsim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toruseo/UXsim/HEAD/uxsim/uxsim.py --------------------------------------------------------------------------------