├── .clang-format ├── .gitattributes ├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── .pre-commit-config.yaml ├── LICENSE ├── Makefile ├── README.md ├── analysis └── uq │ ├── .gitignore │ ├── README.md │ ├── __init__.py │ ├── pMCHalton.json │ ├── pMCQuadPoints.json │ ├── requirements.txt │ ├── simulation_studies │ ├── __init__.py │ ├── forward_propagation │ │ ├── __init__.py │ │ └── run_simple_detour_shadowing.py │ ├── forward_propagation_and_sensitvity_analysis │ │ ├── __init__.py │ │ └── run_simple_detour_sa_fp.py │ ├── guiding_crowds_forward_propagation │ │ ├── .gitignore │ │ ├── __init__.py │ │ └── run_simulations.py │ └── run_integration_tests.py │ └── uq │ ├── PostProcessing │ ├── QuantityOfInterest.py │ ├── SurrogateModels.py │ ├── UQMethods │ │ ├── Analysis.py │ │ ├── EnsembleSensitivityAnalysis.py │ │ ├── ForwardPropagation.py │ │ ├── SensitivityAnalysis.py │ │ └── __init__.py │ └── __init__.py │ ├── PreProcessing │ ├── Parameter.py │ ├── __init__.py │ └── sampling │ │ ├── Base.py │ │ ├── GaussianQuadrature.py │ │ ├── MonteCarlo.py │ │ ├── __init__.py │ │ └── utils.py │ ├── __init__.py │ └── tests │ ├── __init__.py │ ├── pMCHalton.json │ ├── test_SurrogateModels.py │ ├── test_analysis_forward_prop.py │ ├── test_analysis_sensitivity.py │ ├── test_analysis_sensitivity_surrogate.py │ ├── test_analysis_sensitivity_surrogate_ensemble.py │ ├── test_parameters.py │ ├── test_quantity_of_interest.py │ └── test_samplings.py ├── config ├── CONTAINER_REGISTRY.config ├── CONTAINER_VERSION.config └── USER_ENV.config ├── crownet ├── .cproject ├── .nedexclusions ├── .nedfolders ├── .oppbuildspec ├── .oppfeaturestate ├── .project ├── .pydevproject ├── .settings │ └── org.eclipse.ltk.core.refactoring.prefs ├── Makefile ├── gdb │ ├── crownet │ │ ├── __init__.py │ │ └── printers.py │ ├── gdbinit │ ├── gdbinit.py │ ├── libstdcxx │ │ ├── __init__.py │ │ └── v6 │ │ │ ├── __init__.py │ │ │ └── printers.py │ └── omnetpp │ │ ├── __init__.py │ │ └── printers.py ├── images │ ├── background │ │ ├── lab_r1009a.png │ │ └── lab_r1009a_map.png │ └── crownet │ │ └── node │ │ ├── car.svg │ │ ├── car_l.png │ │ ├── car_s.png │ │ ├── car_vl.png │ │ ├── car_vs.png │ │ ├── hostUnequipped.svg │ │ ├── hostUnequipped_l.png │ │ ├── hostUnequipped_s.png │ │ ├── hostUnequipped_vl.png │ │ ├── hostUnequipped_vs.png │ │ ├── pedestrian.png │ │ ├── pedestrian_l.png │ │ ├── pedestrian_s.png │ │ ├── pedestrian_vl.png │ │ └── pedestrian_vs.png ├── makemakefiles ├── simulations │ ├── .gitignore │ ├── README.md │ ├── adaptiveMap │ │ ├── .gitignore │ │ ├── analysis │ │ │ ├── adaptiveMap.py │ │ │ ├── rnd_map.py │ │ │ └── s1_corridor_ramp_down.py │ │ ├── application_settings.ini │ │ ├── eNB_settings.ini │ │ ├── general.ini │ │ ├── ip4Config.xml │ │ ├── mobility_provider.ini │ │ ├── omnetpp.ini │ │ ├── run_script.py │ │ ├── services.xml │ │ ├── study │ │ │ ├── gen_corridor_trace.py │ │ │ ├── s0_mf_topo.py │ │ │ ├── s1_corridor_ramp_down.py │ │ │ └── s1_corridor_ramp_down_rate_lt500kbps.py │ │ ├── trace │ │ │ └── mf_1d_m_const_short_2x5m_d20m_2023-01-17_08-58-32.896_trace_4.bonnMotion │ │ └── vadere │ │ │ ├── scenarios │ │ │ ├── corridor_2x5m_d20.scenario │ │ │ ├── corridor_2x5m_d20_5perSpawn.scenario │ │ │ ├── corridor_2x5m_d20_5perSpawn_ramp_down.scenario │ │ │ ├── mf_1d_m_2x10m_env.xml │ │ │ ├── mf_1d_m_2x5m_env.xml │ │ │ ├── mf_1d_m_const_short_2x5m_d20m.scenario │ │ │ └── mf_1d_m_short_2x5m_env.xml │ │ │ └── vadere.project │ ├── cmp_vadere_sumo │ │ ├── analysis.py │ │ ├── network_addr.xml │ │ ├── omnetpp.ini │ │ ├── run_script.py │ │ ├── run_study │ │ ├── study │ │ │ ├── .gitignore │ │ │ └── study.py │ │ ├── sumo │ │ │ ├── bottleneck │ │ │ │ ├── bottleneck.net.xml │ │ │ │ ├── bottleneck.polygon.xml │ │ │ │ ├── bottleneck.rou.xml │ │ │ │ ├── bottleneck.sumo.cfg │ │ │ │ └── sumo-launchd.launch.xml │ │ │ ├── combined │ │ │ │ ├── combined.net.xml │ │ │ │ ├── combined.rou.xml │ │ │ │ ├── combined.sumo.cfg │ │ │ │ └── sumo-launchd.launch.xml │ │ │ ├── erlangen │ │ │ │ ├── erlangen.net.xml │ │ │ │ ├── erlangen.png │ │ │ │ ├── erlangen.poly.xml │ │ │ │ ├── erlangen.rou.xml │ │ │ │ ├── erlangen.sumo.cfg │ │ │ │ └── sumo-001.log │ │ │ ├── mf_base │ │ │ │ ├── mf_base.net.xml │ │ │ │ ├── mf_base.polygon.xml │ │ │ │ ├── mf_base_000.rou.xml │ │ │ │ ├── mf_base_000.sumocfg │ │ │ │ ├── mf_base_001.launchd.xml │ │ │ │ ├── mf_base_001.rou.xml │ │ │ │ ├── mf_base_001.sumocfg │ │ │ │ ├── mf_base_env.xml │ │ │ │ ├── plain.con.xml │ │ │ │ ├── plain.edg.xml │ │ │ │ ├── plain.nod.xml │ │ │ │ ├── plain.tll.xml │ │ │ │ ├── plain.typ.xml │ │ │ │ ├── sumo-001.log │ │ │ │ └── trips.trips.xml │ │ │ └── simple │ │ │ │ ├── simple.net.xml │ │ │ │ ├── simple.rou.xml │ │ │ │ ├── simple.sumo.cfg │ │ │ │ ├── simple_only2.rou.xml │ │ │ │ ├── simple_only2.sumo.cfg │ │ │ │ ├── sumo-launchd.launch.xml │ │ │ │ └── trips.trips.xml │ │ └── vadere │ │ │ ├── scenarios │ │ │ ├── README.md │ │ │ ├── baseline.scenario │ │ │ ├── bottleneck.scenario │ │ │ ├── bottleneck_env.xml │ │ │ ├── mf_001.scenario │ │ │ ├── mf_001_initial_peds.scenario │ │ │ ├── mf_001_noMesh.scenario │ │ │ ├── mf_2peds.scenario │ │ │ ├── mf_2peds_env.xml │ │ │ ├── mf_2peds_no_env.xml │ │ │ ├── mf_base.osm │ │ │ ├── mf_base_initial_peds.scenario │ │ │ ├── mf_base_initial_peds_env.xml │ │ │ ├── mf_klein_initial_peds.scenario │ │ │ ├── simple.scenario │ │ │ ├── simple_env.xml │ │ │ └── simple_only2.scenario │ │ │ └── vadere.project │ ├── coviCom21 │ │ ├── World.ned │ │ ├── analysis.py │ │ ├── gdb_run.sh │ │ ├── ip4Config.xml │ │ ├── mf_klein_initial_peds_env.xml │ │ ├── omnetpp.ini │ │ ├── run │ │ └── vadere │ │ │ ├── scenarios │ │ │ ├── mf_001_base_72.scenario │ │ │ ├── mf_001_base_96.scenario │ │ │ ├── mf_001_base_env.xml │ │ │ ├── mf_001_small_120.scenario │ │ │ ├── mf_001_small_60.scenario │ │ │ └── mf_001_small_env.xml │ │ │ └── vadere.project │ ├── densityMap │ │ ├── .gitignore │ │ ├── analysis │ │ │ ├── s0_1d_rate_change.py │ │ │ ├── s1_1d_bm.py │ │ │ ├── s2_stationary.py │ │ │ └── s3_dynamic.py │ │ ├── application_settings.ini │ │ ├── eNB_settings.ini │ │ ├── general.ini │ │ ├── ip4Config.xml │ │ ├── misc_pos.ini │ │ ├── mobility_provider.ini │ │ ├── omnetpp.ini │ │ ├── pos_provider.sh │ │ ├── run_script.py │ │ ├── services.xml │ │ ├── study │ │ │ ├── mf_1d.py │ │ │ ├── mf_1d_2peds.py │ │ │ ├── mf_1d_bm.py │ │ │ ├── mf_dynamic_m_single_cell.py │ │ │ ├── mf_dynamic_m_single_cell_iat25.py │ │ │ ├── mf_stationary_m_single_cell.py │ │ │ └── s0_1d_bm_change_rate.py │ │ ├── sumo │ │ │ ├── .gitkeep │ │ │ └── munich │ │ │ │ ├── .gitattributes │ │ │ │ ├── munich.net.xml │ │ │ │ ├── osm │ │ │ │ └── munich_clean.osm │ │ │ │ └── types │ │ │ │ ├── osmNetconvert.typ.xml │ │ │ │ ├── osmNetconvertPedestrians.typ.xml │ │ │ │ └── osmPolyconvert.typ.xml │ │ ├── trace │ │ │ └── trace_mf_1d_m_const_2x5m_d20m_iat_25_2289.bonnMotion │ │ └── vadere │ │ │ ├── scenarios │ │ │ ├── circle.scenario │ │ │ ├── mf_1d_m_2x10m_d20m.scenario │ │ │ ├── mf_1d_m_2x10m_env.xml │ │ │ ├── mf_1d_m_2x5m_env.xml │ │ │ ├── mf_1d_m_const_2x5m_d20m.scenario │ │ │ ├── mf_1d_m_const_2x5m_d20m_25.scenario │ │ │ ├── mf_1d_m_const_2x5m_d280m.scenario │ │ │ ├── mf_1d_m_const_short_2x5m_d20m.scenario │ │ │ ├── mf_1d_m_poisson_2x5m_d20m.scenario │ │ │ ├── mf_1d_m_poisson_2x5m_d280m.scenario │ │ │ ├── mf_dyn_exp_05.scenario │ │ │ ├── mf_dyn_exp_10.scenario │ │ │ ├── mf_dyn_exp_15.scenario │ │ │ ├── mf_dyn_exp_20.scenario │ │ │ ├── mf_dyn_exp_25.scenario │ │ │ ├── mf_m_dyn_const_4e20s_15x12_180.scenario │ │ │ └── mf_m_dyn_const_4e20s_15x8_120.scenario │ │ │ └── vadere.project │ ├── guiding_crowds_test │ │ ├── README │ │ ├── control.py │ │ ├── ip4Config.xml │ │ ├── omnetpp.ini │ │ ├── run_script.py │ │ ├── services.xml │ │ ├── test_run_simulation.py │ │ ├── tests │ │ │ ├── final_control_test_3 │ │ │ │ ├── digest.csv │ │ │ │ └── digest_all.csv │ │ │ ├── final_test_2 │ │ │ │ ├── digest.csv │ │ │ │ └── digest_all.csv │ │ │ ├── vadere_controlled_test_4 │ │ │ │ └── digest.csv │ │ │ ├── vadere_only_signs_test_5 │ │ │ │ └── digest.csv │ │ │ └── vadere_only_test_1 │ │ │ │ └── digest.csv │ │ └── vadere │ │ │ ├── scenarios │ │ │ ├── test001.scenario │ │ │ ├── test001_env.xml │ │ │ └── test001_with_signs.scenario │ │ │ └── vadere.project │ ├── mucFreiheitLte │ │ ├── analysis.d │ │ │ ├── create_images.py │ │ │ ├── d2d_muc_sumo.py │ │ │ ├── example_error_histogram_plot.py │ │ │ ├── geo-maps.ipynb │ │ │ ├── iteractive_density_map.ipynb │ │ │ ├── mergepdf.py │ │ │ ├── neighborhoodSizeTxPower.ipynb │ │ │ ├── out.pdf │ │ │ ├── out_ymfplus.pdf │ │ │ ├── packet_source_hist.ipynb │ │ │ ├── stationary_maps.py │ │ │ ├── wip.py │ │ │ ├── wip001.py │ │ │ └── wip_test.ipynb │ │ ├── gdb_run.sh │ │ ├── ip4Config.xml │ │ ├── muc_stationary.ini │ │ ├── muc_subway_100_uniform.ini │ │ ├── omnetpp.ini │ │ ├── omnetpp_ymfd4s.ini │ │ ├── omnetpp_ymfd4s_onePacket.ini │ │ ├── run_script.py │ │ ├── services.xml │ │ ├── study │ │ │ ├── circle.py │ │ │ ├── dash_analysis.py │ │ │ ├── dcdMap_muc01.py │ │ │ ├── dcdMap_muc02.py │ │ │ ├── dcdMap_muc03.py │ │ │ ├── dcdMap_muc03_b.py │ │ │ ├── dcdMap_muc04.py │ │ │ ├── dcdMap_muc05.py │ │ │ ├── dcdMap_muc10.py │ │ │ ├── dcdMap_muc11.py │ │ │ ├── dcdMap_muc12.py │ │ │ ├── dcdMap_muc13.py │ │ │ ├── dcdMap_muc14.py │ │ │ ├── dcdMap_sumo.py │ │ │ ├── subwayStatic.py │ │ │ ├── subway_small_dynamic.py │ │ │ ├── subway_small_dynamic_analysis.py │ │ │ ├── ymfDistDbg.py │ │ │ ├── ymfDistDbg2.py │ │ │ ├── ymfDistDbg3.py │ │ │ ├── ymfDistDbg4.py │ │ │ ├── ymfDistDbg5.py │ │ │ ├── ymfDistDbg6.py │ │ │ └── ymfDistDbg7.py │ │ ├── sumo │ │ │ ├── .gitkeep │ │ │ ├── base │ │ │ │ ├── mf_base.net.xml │ │ │ │ ├── mf_base.polygon.xml │ │ │ │ ├── mf_base_000.rou.xml │ │ │ │ ├── mf_base_001.launchd.xml │ │ │ │ ├── mf_base_001.rou.xml │ │ │ │ ├── mf_base_001.sumocfg │ │ │ │ └── mf_base_env.xml │ │ │ ├── munich │ │ │ │ ├── .gitattributes │ │ │ │ ├── 2peds_handover_together.rou.alt.xml │ │ │ │ ├── 2peds_handover_together.rou.xml │ │ │ │ ├── 2peds_handover_together.sumo.cfg │ │ │ │ ├── 3peds.rou.alt.xml │ │ │ │ ├── 3peds.rou.xml │ │ │ │ ├── 3peds.sumo.cfg │ │ │ │ ├── 3peds.trips.xml │ │ │ │ ├── muc2peds_small.rou.xml │ │ │ │ ├── muc2peds_small.sumo.cfg │ │ │ │ ├── munich.net.xml │ │ │ │ ├── munich.rou.alt.xml │ │ │ │ ├── munich.rou.xml │ │ │ │ ├── munich.trips.xml │ │ │ │ ├── munich_2.net.xml │ │ │ │ ├── munich_ped120.rou.alt.xml │ │ │ │ ├── munich_ped120.rou.xml │ │ │ │ ├── munich_ped120.sumo.cfg │ │ │ │ ├── munich_ped120.trips.xml │ │ │ │ ├── munich_ped300_small.rou.alt.xml │ │ │ │ ├── munich_ped300_small.rou.xml │ │ │ │ ├── munich_ped300_small.sumo.cfg │ │ │ │ ├── munich_ped300_small.trips.xml │ │ │ │ ├── munich_ped60.rou.alt.xml │ │ │ │ ├── munich_ped60.rou.xml │ │ │ │ ├── munich_ped60.sumo.cfg │ │ │ │ ├── munich_ped60.trips.xml │ │ │ │ ├── osm │ │ │ │ │ └── munich_clean.osm │ │ │ │ ├── tools_cfg │ │ │ │ │ ├── cfg.xml │ │ │ │ │ ├── munich.net.xml │ │ │ │ │ ├── netconvert │ │ │ │ │ ├── polyconvert │ │ │ │ │ ├── randomTrips │ │ │ │ │ ├── trip_custom.xml │ │ │ │ │ ├── ubahn_mfreiheit_300.rou.alt.xml │ │ │ │ │ ├── ubahn_mfreiheit_300.rou.xml │ │ │ │ │ ├── ubahn_mfreiheit_300.sumo.cfg │ │ │ │ │ ├── ubahn_mfreiheit_300.trips.xml │ │ │ │ │ └── ubahn_mfreiheit_300_cfg.xml │ │ │ │ └── types │ │ │ │ │ ├── osmNetconvert.typ.xml │ │ │ │ │ ├── osmNetconvertPedestrians.typ.xml │ │ │ │ │ └── osmPolyconvert.typ.xml │ │ │ └── plain │ │ │ │ ├── plain.con.xml │ │ │ │ ├── plain.edg.xml │ │ │ │ ├── plain.nod.xml │ │ │ │ ├── plain.tll.xml │ │ │ │ └── plain.typ.xml │ │ └── vadere │ │ │ ├── scenarios │ │ │ ├── mf_001_base_44.scenario │ │ │ ├── mf_001_base_72.scenario │ │ │ ├── mf_001_base_96.scenario │ │ │ ├── mf_001_base_env.xml │ │ │ ├── mf_001_initial_peds.scenario │ │ │ ├── mf_001_small_120.scenario │ │ │ ├── mf_001_small_60.scenario │ │ │ ├── mf_001_small_env.xml │ │ │ ├── mf_002_template.scenario │ │ │ ├── mf_003_circle.scenario │ │ │ ├── mf_003_circle3.scenario │ │ │ ├── mf_003_template.scenario │ │ │ ├── mf_004_template.scenario │ │ │ ├── mf_005-2_template.scenario │ │ │ ├── mf_005_template.scenario │ │ │ ├── mf_006_template.scenario │ │ │ ├── mf_2peds.scenario │ │ │ ├── mf_2peds_env.xml │ │ │ ├── mf_base.osm │ │ │ ├── mf_base_initial_peds.scenario │ │ │ ├── mf_base_initial_peds_env.xml │ │ │ ├── mf_circle.scenario │ │ │ ├── mf_circle2.scenario │ │ │ ├── mf_klein_initial_peds.scenario │ │ │ ├── mf_underground.osm │ │ │ ├── mf_underground.scenario │ │ │ ├── mf_underground_env.xml │ │ │ ├── route_choice_real_world.scenario │ │ │ ├── test001_env.xml │ │ │ └── three_paths.scenario │ │ │ └── vadere.project │ ├── mucFreiheit_route_choice_app │ │ ├── control.py │ │ ├── ip4Config.xml │ │ ├── omnetpp.ini │ │ ├── run_script.py │ │ ├── services.xml │ │ └── vadere │ │ │ ├── scenarios │ │ │ ├── route_choice_real_world.scenario │ │ │ └── route_choice_real_world.xml │ │ │ └── vadere.project │ ├── muenchnerFreiheit │ │ ├── omnetpp.ini │ │ ├── package.ned │ │ ├── stsc │ │ │ └── .qtenvrc │ │ └── timoKlein │ │ │ ├── BonnMotion │ │ │ ├── mf_timo_klein_initial_peds │ │ │ │ └── bn_0000.txt │ │ │ ├── mf_underground │ │ │ │ ├── bn_0001-0.txt │ │ │ │ └── bn_0001-1.txt │ │ │ └── rndBonnMotion.py │ │ │ ├── muencherFreiheit.ned │ │ │ ├── omnetpp.ini │ │ │ ├── package.ned │ │ │ └── vadere │ │ │ ├── scenarios │ │ │ ├── mf_timo_klein.osm │ │ │ ├── mf_timo_klein.scenario │ │ │ ├── mf_timo_klein_env.xml │ │ │ ├── mf_timo_klein_initial_peds.scenario │ │ │ ├── mf_timo_klein_initial_peds_env.xml │ │ │ ├── mf_underground.osm │ │ │ ├── mf_underground.scenario │ │ │ └── mf_underground_env.xml │ │ │ └── vadere.project │ ├── multi_enb │ │ ├── World.ned │ │ ├── analysis_test.py │ │ ├── application_settings.ini │ │ ├── eNB_settings.ini │ │ ├── enb_muc_clean5x3.ini │ │ ├── general.ini │ │ ├── generate_enb_grid.py │ │ ├── ip4Config.xml │ │ ├── misc_muc_clean5x3.ini │ │ ├── mobility_provider.ini │ │ ├── omnetpp.ini │ │ ├── run_script.py │ │ ├── services.xml │ │ ├── sumo │ │ │ ├── clean_sumo_traces.py │ │ │ ├── munich │ │ │ │ ├── .gitattributes │ │ │ │ ├── muc_cleaned │ │ │ │ │ ├── custom_vtype.xml │ │ │ │ │ ├── diff │ │ │ │ │ │ ├── 2023-06-01_16-58_diff.con.xml │ │ │ │ │ │ ├── 2023-06-01_16-58_diff.edg.xml │ │ │ │ │ │ ├── 2023-06-01_16-58_diff.nod.xml │ │ │ │ │ │ ├── 2023-06-01_16-58_diff.tll.xml │ │ │ │ │ │ └── 2023-06-01_16-58_diff.typ.xml │ │ │ │ │ ├── grid.neteditcfg │ │ │ │ │ ├── muc.net.xml.gz │ │ │ │ │ ├── muc.netccfg │ │ │ │ │ ├── muc.neteditcfg │ │ │ │ │ ├── muc.osmGetcfg │ │ │ │ │ ├── muc.polycfg │ │ │ │ │ ├── muc_base.net.xml.gz │ │ │ │ │ └── osm_muc_5kmx3km_bbox.osm.xml.gz │ │ │ │ ├── osm │ │ │ │ │ └── munich_clean.osm │ │ │ │ └── osmNetconvertPedestrians.typ.xml │ │ │ └── run_sumo_simulations.py │ │ └── traces │ │ │ ├── pnode_4x3.bonnmotion │ │ │ ├── pnode_5x4.bonnmotion │ │ │ └── pnode_muc_clean5x3.bonnmotion │ ├── networks │ │ ├── LTE_d2d.ned │ │ ├── LabSingleCell.ned │ │ ├── World.ned │ │ ├── World_Wlan.ned │ │ ├── default_configs.ini │ │ └── services.xml │ ├── openair │ │ ├── activate_venv.sh │ │ ├── analyse.py │ │ ├── demo.xml │ │ ├── download_measurements.sh │ │ ├── omnetpp.ini │ │ ├── requirements.txt │ │ ├── run │ │ └── runall_configs │ ├── package.ned │ ├── route_choice_app │ │ ├── .gitignore │ │ ├── control.py │ │ ├── omnetpp.ini │ │ ├── run_script.py │ │ └── vadere │ │ │ ├── scenarios │ │ │ └── three_corridors.scenario │ │ │ └── vadere.project │ ├── run │ ├── separation_slow_fast │ │ ├── .qtenvrc │ │ ├── ip4Config.xml │ │ ├── omnetpp.ini │ │ ├── startsim.sh │ │ ├── sumo │ │ │ └── default.launchd.xml │ │ └── vadere │ │ │ ├── scenarios │ │ │ ├── .gitkeep │ │ │ ├── separation_slow_fast.env.xml │ │ │ └── separation_slow_fast.scenario │ │ │ └── vadere.project │ ├── simple_detoure_suqc_traffic │ │ ├── omnetpp.ini │ │ ├── run_script.py │ │ ├── services.xml │ │ ├── sumo │ │ │ └── default.launchd.xml │ │ └── vadere │ │ │ ├── scenarios │ │ │ ├── .gitkeep │ │ │ ├── simple_detour_100x177.env.xml │ │ │ └── simple_detour_100x177_miat1.25.scenario │ │ │ └── vadere.project │ ├── storyboard │ │ ├── demo.py │ │ ├── den-use-cases.xml │ │ ├── ip4Config.xml │ │ ├── omnetpp.ini │ │ ├── services.xml │ │ └── vadere │ │ │ ├── scenarios │ │ │ ├── .gitkeep │ │ │ ├── simple_detour_poisson_dist_0.2_small.scenario │ │ │ ├── simple_detour_suqc.env.xml │ │ │ └── test.scenario │ │ │ └── vadere.project │ ├── supermarket │ │ ├── scenarios │ │ │ ├── supermarket_basic.scenario │ │ │ └── supermarket_basic_clone_1.scenario │ │ └── vadere.project │ ├── testSim │ │ ├── README.md │ │ ├── control_1.py │ │ ├── control_2.py │ │ ├── ip4Config.xml │ │ ├── omnetpp.ini │ │ ├── run_script.py │ │ ├── sumo │ │ │ ├── example.net.xml │ │ │ ├── example_peds.rou.xml │ │ │ ├── example_peds.sumo.cfg │ │ │ ├── example_peds_cars.rou.xml │ │ │ └── example_peds_cars.sumo.cfg │ │ └── vadere │ │ │ ├── scenarios │ │ │ ├── mf_2peds.bonnMotion │ │ │ ├── mf_2peds.scenario │ │ │ ├── mf_2peds_env.xml │ │ │ ├── test001.scenario │ │ │ ├── test001_env.xml │ │ │ ├── test002.scenario │ │ │ └── test002_env.xml │ │ │ └── vadere.project │ ├── vam_test │ │ ├── ip4Config.xml │ │ ├── omnetpp.ini │ │ ├── run_script.py │ │ ├── services.xml │ │ ├── study │ │ │ └── sumo_study.py │ │ └── sumo │ │ │ └── simpleCrossing │ │ │ ├── example.net.xml │ │ │ ├── example_peds_cars.rou.xml │ │ │ ├── example_peds_cars.sumo.cfg │ │ │ └── example_peds_cars.sumo2.cfg │ └── vruMec │ │ ├── ApplicationDescriptors │ │ └── BeaconApp.json │ │ ├── MECWorld.ned │ │ ├── README.md │ │ ├── demo.xml │ │ ├── omnetpp.ini │ │ └── sumo │ │ ├── luitpoldpark │ │ ├── osm.net.xml │ │ ├── osm.poly.xml │ │ ├── osm.rou.xml │ │ ├── osm.sumocfg │ │ └── osm_bbox.osm.xml │ │ ├── luitpoldpark_conf │ │ ├── osm.net.xml │ │ ├── osm.poly.xml │ │ ├── osm.rou.xml │ │ ├── osm.sumocfg │ │ └── osm_bbox.osm.xml │ │ ├── luitpoldpark_large │ │ ├── osm.net.xml │ │ ├── osm.poly.xml │ │ ├── osm.rou.xml │ │ ├── osm.sumocfg │ │ └── osm_bbox.osm.xml │ │ ├── luitpoldpark_prio │ │ ├── osm.net.xml │ │ ├── osm.poly.xml │ │ ├── osm.rou.xml │ │ ├── osm.sumocfg │ │ └── osm_bbox.osm.xml │ │ ├── luitpoldpark_prio_reduced │ │ ├── osm.net.xml │ │ ├── osm.poly.xml │ │ ├── osm.rou.xml │ │ ├── osm.sumocfg │ │ └── osm_bbox.osm.xml │ │ └── route_gen.py ├── src │ ├── crownet │ │ ├── aid │ │ │ ├── Aid.cc │ │ │ ├── Aid.h │ │ │ ├── Aid.ned │ │ │ ├── AidCommand.msg │ │ │ ├── AidConnection.cc │ │ │ ├── AidConnection.h │ │ │ ├── AidConnection.ned │ │ │ ├── AidConnection_test.cc │ │ │ ├── AidHeader.cc │ │ │ ├── AidHeader.msg │ │ │ ├── AidLayer.ned │ │ │ ├── AidSocket.cc │ │ │ ├── AidSocket.h │ │ │ ├── AidSocket_test.cc │ │ │ ├── Aid_test.cc │ │ │ └── algorithms │ │ │ │ ├── AidAlgorithm.cc │ │ │ │ ├── AidAlgorithm.h │ │ │ │ └── AidAlgorithm_test.cc │ │ ├── applications │ │ │ ├── beacon │ │ │ │ ├── Beacon.msg │ │ │ │ ├── BeaconApp.ned │ │ │ │ ├── BeaconDynamic.cc │ │ │ │ ├── BeaconDynamic.h │ │ │ │ ├── BeaconReceptionInfo.cc │ │ │ │ ├── BeaconReceptionInfo.h │ │ │ │ └── PositionMapPacket.msg │ │ │ ├── common │ │ │ │ ├── AidSocketManager.cc │ │ │ │ ├── AidSocketManager.h │ │ │ │ ├── AppCommon.msg │ │ │ │ ├── AppFsm.h │ │ │ │ ├── BaseApp.cc │ │ │ │ ├── BaseApp.h │ │ │ │ ├── BaseApp.ned │ │ │ │ ├── BaseBroadcast.cc │ │ │ │ ├── BaseBroadcast.h │ │ │ │ ├── BaseBroadcast.ned │ │ │ │ ├── BaseSocketManager.cc │ │ │ │ ├── BaseSocketManager.h │ │ │ │ ├── CrownetApp.ned │ │ │ │ ├── CrownetSocket.ned │ │ │ │ ├── TraCIController.ned │ │ │ │ ├── UdpSocketManager.cc │ │ │ │ ├── UdpSocketManager.h │ │ │ │ ├── info │ │ │ │ │ ├── AppInfo.msg │ │ │ │ │ ├── AppInfoLocal.cc │ │ │ │ │ ├── AppInfoLocal.h │ │ │ │ │ ├── AppRxInfo.cc │ │ │ │ │ ├── AppRxInfo.h │ │ │ │ │ ├── AppRxInfoPerSource.cc │ │ │ │ │ ├── AppRxInfoPerSource.h │ │ │ │ │ ├── AppRxInfoPerSource.msg │ │ │ │ │ ├── AppRxInfoProvider.h │ │ │ │ │ └── InfoTags.msg │ │ │ │ ├── scheduler │ │ │ │ │ ├── AppSchedulerBase.cc │ │ │ │ │ ├── AppSchedulerBase.h │ │ │ │ │ ├── AppSchedulerBase.ned │ │ │ │ │ ├── DynamicMaxBandwidthScheduler.cc │ │ │ │ │ ├── DynamicMaxBandwidthScheduler.h │ │ │ │ │ ├── DynamicMaxBandwidthScheduler.ned │ │ │ │ │ ├── EventTriggerdSchedulerSimple.cc │ │ │ │ │ ├── EventTriggerdSchedulerSimple.h │ │ │ │ │ ├── EventTriggerdSchedulerSimple.ned │ │ │ │ │ ├── IAppScheduler.h │ │ │ │ │ ├── IAppScheduler.ned │ │ │ │ │ ├── IntervalScheduler.cc │ │ │ │ │ ├── IntervalScheduler.h │ │ │ │ │ └── IntervalScheduler.ned │ │ │ │ └── trafficShaper │ │ │ │ │ └── EmptyTrafficConditioner.ned │ │ │ ├── control │ │ │ │ ├── BroadcastControlApp.cc │ │ │ │ ├── BroadcastControlApp.h │ │ │ │ ├── ControlApp.ned │ │ │ │ └── control.msg │ │ │ ├── detour │ │ │ │ ├── Changelog │ │ │ │ ├── DetourAppPacket.msg │ │ │ │ ├── UdpDetourApp.cc │ │ │ │ ├── UdpDetourApp.h │ │ │ │ ├── UdpDetourApp.ned │ │ │ │ ├── UdpDetourAppVadere.cc │ │ │ │ └── UdpDetourAppVadere.h │ │ │ └── dmap │ │ │ │ ├── ArteryDensityMapApp.cc │ │ │ │ ├── ArteryDensityMapApp.h │ │ │ │ ├── BaseDensityMapApp.cc │ │ │ │ ├── BaseDensityMapApp.h │ │ │ │ ├── DensityMapApp.ned │ │ │ │ ├── DensityMapAppSimple.cc │ │ │ │ ├── DensityMapAppSimple.h │ │ │ │ ├── EntropyMapAppSimple.cc │ │ │ │ ├── EntropyMapAppSimple.h │ │ │ │ └── dmap.msg │ │ ├── artery │ │ │ ├── IDispatchRadioDriver.ned │ │ │ ├── PedestrianMiddleware.cc │ │ │ ├── PedestrianMiddleware.h │ │ │ ├── PedestrianMiddleware.ned │ │ │ ├── PedestrianMiddlewareEmpty.cc │ │ │ ├── PedestrianMiddlewareEmpty.h │ │ │ ├── PedestrianMiddlewareEmpty.ned │ │ │ ├── World.ned │ │ │ ├── lte │ │ │ │ ├── GeoNetTag.msg │ │ │ │ ├── LteRadioDriver.cc │ │ │ │ ├── LteRadioDriver.h │ │ │ │ └── LteRadioDriver.ned │ │ │ ├── traci.h │ │ │ └── traci │ │ │ │ ├── InetVaderePersonMobility.cc │ │ │ │ ├── InetVaderePersonMobility.h │ │ │ │ ├── InetVaderePersonMobility.ned │ │ │ │ ├── PedestrianPositionProvider.cc │ │ │ │ ├── PedestrianPositionProvider.h │ │ │ │ ├── PedestrianPositionProvider.ned │ │ │ │ ├── RoverCore.ned │ │ │ │ ├── SumoCombinedNodeManager.cc │ │ │ │ ├── SumoCombinedNodeManager.h │ │ │ │ ├── SumoCombinedNodeManager.ned │ │ │ │ ├── SumoLauncher.cc │ │ │ │ ├── SumoLauncher.h │ │ │ │ ├── SumoLauncher.ned │ │ │ │ ├── TraCiForwarder.h │ │ │ │ ├── TraCiNodeVisitorAcceptor.h │ │ │ │ ├── VadereApi.cc │ │ │ │ ├── VadereApi.h │ │ │ │ ├── VadereCore.cc │ │ │ │ ├── VadereCore.h │ │ │ │ ├── VadereLauncher.cc │ │ │ │ ├── VadereLauncher.h │ │ │ │ ├── VadereLauncher.ned │ │ │ │ ├── VadereModuleMapper.cc │ │ │ │ ├── VadereModuleMapper.h │ │ │ │ ├── VadereModuleMapper.ned │ │ │ │ ├── VadereNodeManager.cc │ │ │ │ ├── VadereNodeManager.h │ │ │ │ ├── VadereNodeManager.ned │ │ │ │ ├── VaderePersonController.cc │ │ │ │ ├── VaderePersonController.h │ │ │ │ ├── VaderePersonSink.h │ │ │ │ ├── VadereSubscriptionManager.cc │ │ │ │ ├── VadereSubscriptionManager.h │ │ │ │ ├── VadereSubscriptionManager.ned │ │ │ │ ├── VadereUtils.cc │ │ │ │ ├── VadereUtils.h │ │ │ │ ├── VariableCache.cc │ │ │ │ └── VariableCache.h │ │ ├── common │ │ │ ├── BurstIdSet.cc │ │ │ ├── BurstIdSet.h │ │ │ ├── CoordConverter.ned │ │ │ ├── DensityMapSceneCanvasVisualizer.cc │ │ │ ├── DensityMapSceneCanvasVisualizer.h │ │ │ ├── DensityMapSceneCanvasVisualizer.ned │ │ │ ├── Entry.h │ │ │ ├── GlobalDensityMap.cc │ │ │ ├── GlobalDensityMap.h │ │ │ ├── GlobalDensityMap.ned │ │ │ ├── GlobalEntropyMap.cc │ │ │ ├── GlobalEntropyMap.h │ │ │ ├── IDensityMapHandler.h │ │ │ ├── MobilityProviderMixin.h │ │ │ ├── ModuleAccess.cc │ │ │ ├── ModuleAccess.h │ │ │ ├── RegularGridInfo.cc │ │ │ ├── RegularGridInfo.h │ │ │ ├── RsdProviderMixin.cc │ │ │ ├── RsdProviderMixin.h │ │ │ ├── SocketHandler.cc │ │ │ ├── SocketHandler.h │ │ │ ├── SocketHandler_test.cc │ │ │ ├── converter │ │ │ │ ├── OsgCoordConverter.cc │ │ │ │ ├── OsgCoordConverter.h │ │ │ │ ├── OsgCoordinateConverter.cc │ │ │ │ └── OsgCoordinateConverter.h │ │ │ ├── crownet.msg │ │ │ ├── entropy │ │ │ │ ├── EntropyProvider.h │ │ │ │ ├── RndOffsetPolynomialEntropy.cc │ │ │ │ ├── RndOffsetPolynomialEntropy.h │ │ │ │ ├── UniformEntropy.cc │ │ │ │ ├── UniformEntropy.h │ │ │ │ └── entropy.msg │ │ │ ├── geometry │ │ │ │ └── container │ │ │ │ │ ├── CountQuadTree.cc │ │ │ │ │ ├── CountQuadTree.h │ │ │ │ │ └── FreeList.h │ │ │ ├── iterator │ │ │ │ ├── FilterIterator.h │ │ │ │ └── FilterIterator.tcc │ │ │ ├── result │ │ │ │ ├── ResultFilters.cc │ │ │ │ ├── ResultFilters.h │ │ │ │ ├── ResultRecorders.cc │ │ │ │ ├── ResultRecorders.h │ │ │ │ ├── Simsignals.cc │ │ │ │ └── Simsignals.h │ │ │ ├── sumo │ │ │ │ ├── SumoSceneCanvasVisualizer.cc │ │ │ │ ├── SumoSceneCanvasVisualizer.h │ │ │ │ └── SumoSceneCanvasVisualizer.ned │ │ │ └── util │ │ │ │ ├── FilePrinter.cc │ │ │ │ ├── FilePrinter.h │ │ │ │ ├── FileWriter.cc │ │ │ │ ├── FileWriter.h │ │ │ │ ├── FileWriter.msg │ │ │ │ ├── FileWriterRegister.cc │ │ │ │ ├── FileWriterRegister.h │ │ │ │ ├── FileWriterRegister.ned │ │ │ │ ├── NedFunctions.cc │ │ │ │ ├── NeighborhoodEventWriter.cc │ │ │ │ ├── NeighborhoodEventWriter.h │ │ │ │ ├── RingBuffer.h │ │ │ │ ├── SqlLiteWriter.cc │ │ │ │ ├── SqlLiteWriter.h │ │ │ │ ├── Writer.cc │ │ │ │ ├── Writer.h │ │ │ │ ├── crownet_util.cc │ │ │ │ ├── crownet_util.h │ │ │ │ └── crownet_util.msg │ │ ├── control │ │ │ ├── ControlHandler.h │ │ │ ├── ControlManager.cc │ │ │ ├── ControlManager.h │ │ │ ├── ControlManager.ned │ │ │ ├── ControlTraCiApi.cc │ │ │ └── ControlTraCiApi.h │ │ ├── crownet.cc │ │ ├── crownet.h │ │ ├── dcd │ │ │ ├── common │ │ │ │ └── Visitor_check.h │ │ │ ├── generic │ │ │ │ ├── Cell.h │ │ │ │ ├── Cell.tcc │ │ │ │ ├── CellIdStream.h │ │ │ │ ├── CellIdStream.tcc │ │ │ │ ├── CellVisitors.h │ │ │ │ ├── DcdMap.h │ │ │ │ ├── DcdMap.tcc │ │ │ │ ├── DcdMapWatcher.h │ │ │ │ ├── DcdMapWatcher.tcc │ │ │ │ ├── ICellIdStream.h │ │ │ │ └── iterator │ │ │ │ │ ├── CellDataIterator.h │ │ │ │ │ ├── CellDataIterator.tcc │ │ │ │ │ ├── DcDMapIterator.h │ │ │ │ │ └── DcDMapIterator.tcc │ │ │ ├── identifier │ │ │ │ ├── CellKeyProvider.cc │ │ │ │ ├── CellKeyProvider.h │ │ │ │ ├── Identifiers.cc │ │ │ │ ├── Identifiers.h │ │ │ │ └── TimeProvider.h │ │ │ └── regularGrid │ │ │ │ ├── MapCellAggregationAlgorithms.cc │ │ │ │ ├── MapCellAggregationAlgorithms.h │ │ │ │ ├── RegularCell.cc │ │ │ │ ├── RegularCell.h │ │ │ │ ├── RegularCellVisitors.cc │ │ │ │ ├── RegularCellVisitors.h │ │ │ │ ├── RegularDcdMap.cc │ │ │ │ ├── RegularDcdMap.h │ │ │ │ ├── RegularDcdMapPrinter.cc │ │ │ │ ├── RegularDcdMapPrinter.h │ │ │ │ └── visitors.msg │ │ ├── mec │ │ │ ├── BeaconJSON.cc │ │ │ ├── BeaconJSON.h │ │ │ ├── BeaconRepository.cc │ │ │ ├── BeaconRepository.h │ │ │ ├── BeaconService.cc │ │ │ ├── BeaconService.h │ │ │ ├── BeaconService.ned │ │ │ ├── MECBeaconApp.cc │ │ │ ├── MECBeaconApp.h │ │ │ ├── MECBeaconApp.ned │ │ │ ├── UEBeaconApp.cc │ │ │ ├── UEBeaconApp.h │ │ │ ├── UEBeaconApp.ned │ │ │ ├── UED2DBeaconApp.cc │ │ │ ├── UED2DBeaconApp.h │ │ │ ├── UED2DBeaconApp.ned │ │ │ ├── UEMECApp.cc │ │ │ ├── UEMECApp.h │ │ │ ├── UEMECApp.ned │ │ │ ├── aggregation │ │ │ │ ├── BeaconAggregationStrategy.cc │ │ │ │ ├── BeaconAggregationStrategy.h │ │ │ │ ├── DangerZoneBeaconFilter.cc │ │ │ │ ├── DefaultBeaconAggregationStrategy.cc │ │ │ │ ├── PriorityBasedAggregator.cc │ │ │ │ └── V2PP2VFilter.cc │ │ │ └── packets │ │ │ │ └── SimpleMECBeacon.msg │ │ ├── mobility │ │ │ ├── BonnMotionMobilityClient.cc │ │ │ ├── BonnMotionMobilityClient.h │ │ │ ├── BonnMotionMobilityClient.ned │ │ │ ├── BonnMotionMobilityServer.cc │ │ │ ├── BonnMotionMobilityServer.h │ │ │ ├── BonnMotionMobilityServer.ned │ │ │ └── IPositionHistoryProvider.h │ │ ├── neighbourhood │ │ │ ├── EntropyNeigborhoodTableClient.cc │ │ │ ├── EntropyNeigborhoodTableClient.h │ │ │ ├── EntropyNeigborhoodTableClient.ned │ │ │ ├── NeighborhoodTable.cc │ │ │ ├── NeighborhoodTable.h │ │ │ ├── NeighborhoodTable.ned │ │ │ ├── NeighborhoodTableFilterIterator.h │ │ │ ├── NeighborhoodTableFilterIterator.tcc │ │ │ └── contract │ │ │ │ ├── INeighborhoodSizeProvider.h │ │ │ │ ├── INeighborhoodTable.cc │ │ │ │ └── INeighborhoodTable.h │ │ ├── nodes │ │ │ ├── AidPedestrian.ned │ │ │ ├── AidVehicle.ned │ │ │ ├── ApplicationLayerPedestrian.ned │ │ │ ├── ApplicationLayerVehicle.ned │ │ │ ├── ArteryPerson.ned │ │ │ ├── IMobileUe.ned │ │ │ ├── MobileUe.ned │ │ │ ├── PedestrianArtery.ned │ │ │ ├── TransportLayerRoadUser.ned │ │ │ └── UnequippedHost.ned │ │ ├── package.ned │ │ ├── queueing │ │ │ ├── CrownetActivePacketSourceBase.cc │ │ │ ├── CrownetActivePacketSourceBase.h │ │ │ ├── CrownetActivePacketSourceBase.ned │ │ │ ├── CrownetPacketSourceBase.cc │ │ │ ├── CrownetPacketSourceBase.h │ │ │ ├── CrownetPacketSourceBase.ned │ │ │ ├── CrownetPassivePacketSourceBase.cc │ │ │ ├── CrownetPassivePacketSourceBase.h │ │ │ ├── CrownetPassivePacketSourceBase.ned │ │ │ ├── ICrownetActivePacketSource.h │ │ │ └── meter │ │ │ │ ├── ApplicationPacketMeterIn.cc │ │ │ │ ├── ApplicationPacketMeterIn.h │ │ │ │ ├── EmaPacketMeter.cc │ │ │ │ ├── EmaPacketMeter.h │ │ │ │ ├── GenericPacketMeter.cc │ │ │ │ ├── GenericPacketMeter.h │ │ │ │ ├── GenericPacketMeter.ned │ │ │ │ ├── TemaPacketMeter.cc │ │ │ │ ├── TemaPacketMeter.h │ │ │ │ └── meter.msg │ │ └── simu5g │ │ │ └── stack │ │ │ └── ip2nic │ │ │ ├── Geo2Nic.cc │ │ │ ├── Geo2Nic.h │ │ │ └── Geo2Nic.ned │ ├── makefrag │ ├── run_crownet │ └── run_crownet_dbg ├── templates │ └── crownet_with_vadere_sumo │ │ ├── omnetpp.ini.ftl │ │ ├── sumo │ │ └── default.launchd.xml.ftl │ │ ├── template.properties │ │ └── vadere │ │ ├── scenarios │ │ └── .gitkeep │ │ └── vadere.project.ftl └── tests │ ├── .gitignore │ ├── fingerprint │ ├── README.md │ ├── control.yml │ ├── crownet.csv │ ├── crownet_fingerprinttest │ ├── fingerprints │ ├── fingerprints_crownet │ ├── guiding_crowds.yml │ ├── guiding_real_topo.yml │ ├── hash.d │ │ ├── control │ │ │ ├── control001_aid.csv │ │ │ ├── control001_udp.csv │ │ │ └── control001_udp_only.csv │ │ ├── guiding_crowds │ │ │ ├── final_test_2.csv │ │ │ ├── final_test_3.csv │ │ │ ├── test_4.csv │ │ │ ├── test_5.csv │ │ │ └── vadere_only_test_1.csv │ │ ├── guiding_real_topo │ │ │ └── route_choice_real_world.csv │ │ └── simple_detour │ │ │ └── simple_detour_wlan.csv │ ├── openair.csv │ ├── simple_detour.yml │ └── test-branch-x │ ├── gtest │ ├── .gitkeep │ └── src │ │ ├── crownet │ │ ├── aid │ │ │ └── algorithms │ │ │ │ └── .gitkeep │ │ ├── applications │ │ │ └── BeaconTest.cc │ │ ├── common │ │ │ ├── BurstIdSetTest.cc │ │ │ ├── IEntryTest.cc │ │ │ ├── NeighborhoodTableEntryTest.cc │ │ │ ├── NeighborhoodTableTest.cc │ │ │ └── geometry │ │ │ │ └── container │ │ │ │ ├── FreeListTest.cc │ │ │ │ └── QuadTreeTest.cc │ │ ├── crownet_testutil.cc │ │ ├── crownet_testutil.h │ │ ├── dcd │ │ │ ├── DPMM_CellAggregationAlgIdempotent.cc │ │ │ ├── DPMM_CellAggregationAlgTest.cc │ │ │ ├── DcDMapFileWriterTest.cc │ │ │ ├── DcDMapIteratorTest.cc │ │ │ ├── DcDMapTest.cc │ │ │ ├── DpmmResourceSharing.cc │ │ │ ├── GridCellIDKeyProvider.cc │ │ │ ├── IdentifierTest.cc │ │ │ ├── RegularGridInfoTest.cc │ │ │ ├── cell │ │ │ │ ├── CellTest.cc │ │ │ │ ├── RegularCellTest.cc │ │ │ │ └── RegularCellVisitorTest.cc │ │ │ └── rank_plot.py │ │ ├── mobility │ │ │ ├── BonnMotionTest.cc │ │ │ ├── bmFile1.bonnMotion │ │ │ └── bmFile2.bonnMotion │ │ └── queueing │ │ │ └── meter │ │ │ ├── EmaMeterTest.cc │ │ │ └── TemaMeterTest.cc │ │ ├── main_test.cc │ │ ├── main_test.h │ │ └── makefrag │ └── omnetpp │ ├── DcDMap.test │ ├── DcDMap_dynamicInterval.test │ ├── DcDMap_localUpdate.test │ ├── DcDMap_noData.test │ ├── DcDMap_withData.test │ ├── Dpmm_FullNeighborhoodCount.test │ ├── Dpmm_RsdNeighborhoodCount.test │ ├── MultiBeaconTest.test │ ├── NeighborhoodTable_handleMessage.test │ ├── NeighborhoodTable_initialize.test │ ├── NeighborhoodTable_initialize2.test │ ├── StopApplication.test │ ├── gentest │ ├── lib │ ├── NeighborhoodTableTest.ned │ ├── NeighborhoodTableTestApp.cc │ ├── TestStationaryWorld.ned │ ├── dcdMap_localUpdate.py │ ├── dcdTest.ipynb │ ├── default_testConfig.ini │ ├── ip4Config.xml │ ├── package.ned │ ├── run_with_venv.sh │ └── services.xml │ └── runtest ├── doc ├── Installation │ ├── BuildOfIndividualSubModules.md │ ├── CodingStyle.md │ ├── Installation.md │ └── Recommendations.md ├── Parameterstudies │ └── README.md ├── README.md ├── Running-a-Simulation │ ├── README.md │ ├── StartUp-GUI.md │ ├── StartUp-RunScript.md │ └── StartUp-Terminal.md ├── Simulation-configuration │ ├── Configuration.md │ └── use-dynamic-bonnMotion-traces.md ├── Submodules │ ├── README.md │ ├── inet_patches │ │ ├── 0001-applied-patch-to-print-tag-strings.patch │ │ ├── 0002-fix-SharingTag-needs-to-be-used-for-str-methods.patch │ │ ├── 0003-fix-add-toString-to-Coord-so-that-coordinates-can-be.patch │ │ └── README.md │ └── omnetpp.md ├── Testing │ ├── README.md │ ├── gtest.md │ └── opp_test.md ├── archive │ ├── How-to-implement-and-test-crowd-control-in-CrowNet.md │ ├── SimulationVM.md │ ├── layer_application.md │ ├── mac_setup.md │ ├── protocol_stack.md │ └── service_aid.md ├── features │ ├── AccuratePedestrianMobility.md │ ├── DensityMap.md │ ├── Interactions.md │ └── RouteRecommendation.md └── img │ ├── Accuracy_of_models.png │ ├── ImageProduction │ ├── Accuracy_of_models.odp │ ├── Accuracy_of_models.png │ ├── Interaction_overview.odp │ ├── Interaction_overview.png │ ├── Interaction_overview_v2.odp │ └── Interaction_overview_v2.png │ ├── Interaction_overview.png │ ├── Interaction_overview_v2.png │ ├── aid.png │ ├── congestion.png │ ├── crownet_sketch.pdf │ ├── crownet_sketch.png │ ├── density_map.png │ ├── density_map_processoverview.png │ ├── detailed_vadere.png │ ├── discretized_topography.png │ ├── guiding_strategy_1.png │ ├── guiding_strategy_2.png │ ├── how_to_implement_and_test_crown_control_in_corwnet │ ├── pycharm_settings.png │ ├── pycharm_settings_1.png │ ├── sim_example.png │ ├── simulations.png │ └── source.png │ ├── interactions_strong.png │ ├── models.png │ ├── opp_test_debug_config.png │ ├── rerouted.png │ ├── route_recommendation.png │ ├── simulation_tutorial │ ├── omnet_first_look.png │ ├── python_interpreter_pycharm.png │ ├── run_simulation_ide.png │ ├── select_configuration.png │ └── simulation_view.png │ └── xquartz_security_settings.png ├── docker ├── README.md ├── crownet-base-cpp │ └── Dockerfile ├── crownet-base-java │ └── Dockerfile ├── crownet-base-min │ └── Dockerfile ├── flowcontrol-ide │ ├── Dockerfile │ ├── init.sh │ └── waitfor.sh ├── flowcontrol │ ├── Dockerfile │ ├── init.sh │ └── init_dev.sh ├── omnetpp-ide │ ├── Dockerfile │ ├── init.sh │ └── waitfor.sh ├── omnetpp │ ├── Dockerfile │ ├── configure.user │ ├── init.sh │ └── waitfor.sh ├── sumo │ ├── Dockerfile │ ├── init.sh │ └── veins_launchd ├── vadere-ide │ ├── Dockerfile │ ├── init.sh │ └── waitfor.sh └── vadere │ ├── Dockerfile │ ├── init.sh │ └── vadere-gui ├── scripts ├── build_all_images ├── build_and_push_image ├── check_container_available ├── configure_git.sh ├── crownet_info ├── dockerX11.sh ├── flowcontrol ├── flowcontrol-ide ├── get_images ├── git-format │ ├── COPYING │ ├── README.md │ ├── apply-format │ └── git-pre-commit-format ├── install_pip.sh ├── install_wiki.sh ├── jetbrains │ ├── External Tools.xml │ ├── README │ └── watchers.xml ├── lib │ ├── lib.sh │ └── python │ │ └── rover_utils │ │ ├── .gitignore │ │ ├── README.md │ │ ├── requirements.txt │ │ ├── rover_utils │ │ ├── __init__.py │ │ ├── docker_utils │ │ │ ├── __init__.py │ │ │ ├── cli.py │ │ │ ├── common.py │ │ │ └── docker_rover.py │ │ ├── gui │ │ │ ├── __init__.py │ │ │ ├── gui_common.py │ │ │ ├── gui_fuzzy_list_select.py │ │ │ └── widgets.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── rover_utils_tests.py │ │ └── setup.py ├── nedpath ├── omnetpp ├── omnetpp-ide ├── omnetpp-inet ├── omnetpp_rnd ├── opp_docker_shell ├── print_container_registry ├── print_container_versions ├── print_environment ├── pull_and_push_images ├── pull_images ├── push_images ├── rnd_stationary_positions ├── ropp_run ├── ropp_runall ├── run_simulations_Diss_Mayr ├── sumo ├── sumo-gui ├── sumo-server ├── vadere ├── vadere-gui ├── vadere-ide ├── vadere-postvis ├── vadere-server └── write_config.sh └── setup /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/README.md -------------------------------------------------------------------------------- /analysis/uq/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/analysis/uq/.gitignore -------------------------------------------------------------------------------- /analysis/uq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/analysis/uq/README.md -------------------------------------------------------------------------------- /analysis/uq/__init__.py: -------------------------------------------------------------------------------- 1 | from .simulation_studies import * 2 | -------------------------------------------------------------------------------- /analysis/uq/pMCHalton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/analysis/uq/pMCHalton.json -------------------------------------------------------------------------------- /analysis/uq/pMCQuadPoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/analysis/uq/pMCQuadPoints.json -------------------------------------------------------------------------------- /analysis/uq/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/analysis/uq/requirements.txt -------------------------------------------------------------------------------- /analysis/uq/simulation_studies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/uq/simulation_studies/forward_propagation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/uq/simulation_studies/forward_propagation_and_sensitvity_analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/uq/simulation_studies/guiding_crowds_forward_propagation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/uq/simulation_studies/run_integration_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/analysis/uq/simulation_studies/run_integration_tests.py -------------------------------------------------------------------------------- /analysis/uq/uq/PostProcessing/QuantityOfInterest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/analysis/uq/uq/PostProcessing/QuantityOfInterest.py -------------------------------------------------------------------------------- /analysis/uq/uq/PostProcessing/SurrogateModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/analysis/uq/uq/PostProcessing/SurrogateModels.py -------------------------------------------------------------------------------- /analysis/uq/uq/PostProcessing/UQMethods/Analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/analysis/uq/uq/PostProcessing/UQMethods/Analysis.py -------------------------------------------------------------------------------- /analysis/uq/uq/PostProcessing/UQMethods/ForwardPropagation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/analysis/uq/uq/PostProcessing/UQMethods/ForwardPropagation.py -------------------------------------------------------------------------------- /analysis/uq/uq/PostProcessing/UQMethods/SensitivityAnalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/analysis/uq/uq/PostProcessing/UQMethods/SensitivityAnalysis.py -------------------------------------------------------------------------------- /analysis/uq/uq/PostProcessing/UQMethods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/uq/uq/PostProcessing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/uq/uq/PreProcessing/Parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/analysis/uq/uq/PreProcessing/Parameter.py -------------------------------------------------------------------------------- /analysis/uq/uq/PreProcessing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/uq/uq/PreProcessing/sampling/Base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/analysis/uq/uq/PreProcessing/sampling/Base.py -------------------------------------------------------------------------------- /analysis/uq/uq/PreProcessing/sampling/GaussianQuadrature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/analysis/uq/uq/PreProcessing/sampling/GaussianQuadrature.py -------------------------------------------------------------------------------- /analysis/uq/uq/PreProcessing/sampling/MonteCarlo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/analysis/uq/uq/PreProcessing/sampling/MonteCarlo.py -------------------------------------------------------------------------------- /analysis/uq/uq/PreProcessing/sampling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/uq/uq/PreProcessing/sampling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/analysis/uq/uq/PreProcessing/sampling/utils.py -------------------------------------------------------------------------------- /analysis/uq/uq/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/uq/uq/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/uq/uq/tests/pMCHalton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/analysis/uq/uq/tests/pMCHalton.json -------------------------------------------------------------------------------- /analysis/uq/uq/tests/test_SurrogateModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/analysis/uq/uq/tests/test_SurrogateModels.py -------------------------------------------------------------------------------- /analysis/uq/uq/tests/test_analysis_forward_prop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/analysis/uq/uq/tests/test_analysis_forward_prop.py -------------------------------------------------------------------------------- /analysis/uq/uq/tests/test_analysis_sensitivity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/analysis/uq/uq/tests/test_analysis_sensitivity.py -------------------------------------------------------------------------------- /analysis/uq/uq/tests/test_analysis_sensitivity_surrogate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/analysis/uq/uq/tests/test_analysis_sensitivity_surrogate.py -------------------------------------------------------------------------------- /analysis/uq/uq/tests/test_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/analysis/uq/uq/tests/test_parameters.py -------------------------------------------------------------------------------- /analysis/uq/uq/tests/test_quantity_of_interest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/analysis/uq/uq/tests/test_quantity_of_interest.py -------------------------------------------------------------------------------- /analysis/uq/uq/tests/test_samplings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/analysis/uq/uq/tests/test_samplings.py -------------------------------------------------------------------------------- /config/CONTAINER_REGISTRY.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/config/CONTAINER_REGISTRY.config -------------------------------------------------------------------------------- /config/CONTAINER_VERSION.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/config/CONTAINER_VERSION.config -------------------------------------------------------------------------------- /config/USER_ENV.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/config/USER_ENV.config -------------------------------------------------------------------------------- /crownet/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/.cproject -------------------------------------------------------------------------------- /crownet/.nedexclusions: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crownet/.nedfolders: -------------------------------------------------------------------------------- 1 | simulations 2 | src 3 | -------------------------------------------------------------------------------- /crownet/.oppbuildspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/.oppbuildspec -------------------------------------------------------------------------------- /crownet/.oppfeaturestate: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /crownet/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/.project -------------------------------------------------------------------------------- /crownet/.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/.pydevproject -------------------------------------------------------------------------------- /crownet/.settings/org.eclipse.ltk.core.refactoring.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/.settings/org.eclipse.ltk.core.refactoring.prefs -------------------------------------------------------------------------------- /crownet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/Makefile -------------------------------------------------------------------------------- /crownet/gdb/crownet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crownet/gdb/crownet/printers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/gdb/crownet/printers.py -------------------------------------------------------------------------------- /crownet/gdb/gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/gdb/gdbinit -------------------------------------------------------------------------------- /crownet/gdb/gdbinit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/gdb/gdbinit.py -------------------------------------------------------------------------------- /crownet/gdb/libstdcxx/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crownet/gdb/libstdcxx/v6/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crownet/gdb/libstdcxx/v6/printers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/gdb/libstdcxx/v6/printers.py -------------------------------------------------------------------------------- /crownet/gdb/omnetpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crownet/gdb/omnetpp/printers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/gdb/omnetpp/printers.py -------------------------------------------------------------------------------- /crownet/images/background/lab_r1009a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/images/background/lab_r1009a.png -------------------------------------------------------------------------------- /crownet/images/background/lab_r1009a_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/images/background/lab_r1009a_map.png -------------------------------------------------------------------------------- /crownet/images/crownet/node/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/images/crownet/node/car.svg -------------------------------------------------------------------------------- /crownet/images/crownet/node/car_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/images/crownet/node/car_l.png -------------------------------------------------------------------------------- /crownet/images/crownet/node/car_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/images/crownet/node/car_s.png -------------------------------------------------------------------------------- /crownet/images/crownet/node/car_vl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/images/crownet/node/car_vl.png -------------------------------------------------------------------------------- /crownet/images/crownet/node/car_vs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/images/crownet/node/car_vs.png -------------------------------------------------------------------------------- /crownet/images/crownet/node/hostUnequipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/images/crownet/node/hostUnequipped.svg -------------------------------------------------------------------------------- /crownet/images/crownet/node/hostUnequipped_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/images/crownet/node/hostUnequipped_l.png -------------------------------------------------------------------------------- /crownet/images/crownet/node/hostUnequipped_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/images/crownet/node/hostUnequipped_s.png -------------------------------------------------------------------------------- /crownet/images/crownet/node/hostUnequipped_vl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/images/crownet/node/hostUnequipped_vl.png -------------------------------------------------------------------------------- /crownet/images/crownet/node/hostUnequipped_vs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/images/crownet/node/hostUnequipped_vs.png -------------------------------------------------------------------------------- /crownet/images/crownet/node/pedestrian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/images/crownet/node/pedestrian.png -------------------------------------------------------------------------------- /crownet/images/crownet/node/pedestrian_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/images/crownet/node/pedestrian_l.png -------------------------------------------------------------------------------- /crownet/images/crownet/node/pedestrian_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/images/crownet/node/pedestrian_s.png -------------------------------------------------------------------------------- /crownet/images/crownet/node/pedestrian_vl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/images/crownet/node/pedestrian_vl.png -------------------------------------------------------------------------------- /crownet/images/crownet/node/pedestrian_vs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/images/crownet/node/pedestrian_vs.png -------------------------------------------------------------------------------- /crownet/makemakefiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/makemakefiles -------------------------------------------------------------------------------- /crownet/simulations/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | Sample* 3 | -------------------------------------------------------------------------------- /crownet/simulations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/README.md -------------------------------------------------------------------------------- /crownet/simulations/adaptiveMap/.gitignore: -------------------------------------------------------------------------------- 1 | study/*.d 2 | -------------------------------------------------------------------------------- /crownet/simulations/adaptiveMap/analysis/adaptiveMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/adaptiveMap/analysis/adaptiveMap.py -------------------------------------------------------------------------------- /crownet/simulations/adaptiveMap/analysis/rnd_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/adaptiveMap/analysis/rnd_map.py -------------------------------------------------------------------------------- /crownet/simulations/adaptiveMap/application_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/adaptiveMap/application_settings.ini -------------------------------------------------------------------------------- /crownet/simulations/adaptiveMap/eNB_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/adaptiveMap/eNB_settings.ini -------------------------------------------------------------------------------- /crownet/simulations/adaptiveMap/general.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/adaptiveMap/general.ini -------------------------------------------------------------------------------- /crownet/simulations/adaptiveMap/ip4Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/adaptiveMap/ip4Config.xml -------------------------------------------------------------------------------- /crownet/simulations/adaptiveMap/mobility_provider.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/adaptiveMap/mobility_provider.ini -------------------------------------------------------------------------------- /crownet/simulations/adaptiveMap/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/adaptiveMap/omnetpp.ini -------------------------------------------------------------------------------- /crownet/simulations/adaptiveMap/run_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/adaptiveMap/run_script.py -------------------------------------------------------------------------------- /crownet/simulations/adaptiveMap/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/adaptiveMap/services.xml -------------------------------------------------------------------------------- /crownet/simulations/adaptiveMap/study/gen_corridor_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/adaptiveMap/study/gen_corridor_trace.py -------------------------------------------------------------------------------- /crownet/simulations/adaptiveMap/study/s0_mf_topo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/adaptiveMap/study/s0_mf_topo.py -------------------------------------------------------------------------------- /crownet/simulations/adaptiveMap/study/s1_corridor_ramp_down.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/adaptiveMap/study/s1_corridor_ramp_down.py -------------------------------------------------------------------------------- /crownet/simulations/adaptiveMap/vadere/vadere.project: -------------------------------------------------------------------------------- 1 | mucFreiNetdLTE2dMulticast -------------------------------------------------------------------------------- /crownet/simulations/cmp_vadere_sumo/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/cmp_vadere_sumo/analysis.py -------------------------------------------------------------------------------- /crownet/simulations/cmp_vadere_sumo/network_addr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/cmp_vadere_sumo/network_addr.xml -------------------------------------------------------------------------------- /crownet/simulations/cmp_vadere_sumo/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/cmp_vadere_sumo/omnetpp.ini -------------------------------------------------------------------------------- /crownet/simulations/cmp_vadere_sumo/run_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/cmp_vadere_sumo/run_script.py -------------------------------------------------------------------------------- /crownet/simulations/cmp_vadere_sumo/run_study: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/cmp_vadere_sumo/run_study -------------------------------------------------------------------------------- /crownet/simulations/cmp_vadere_sumo/study/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/cmp_vadere_sumo/study/.gitignore -------------------------------------------------------------------------------- /crownet/simulations/cmp_vadere_sumo/study/study.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/cmp_vadere_sumo/study/study.py -------------------------------------------------------------------------------- /crownet/simulations/cmp_vadere_sumo/sumo/erlangen/erlangen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/cmp_vadere_sumo/sumo/erlangen/erlangen.png -------------------------------------------------------------------------------- /crownet/simulations/cmp_vadere_sumo/sumo/erlangen/sumo-001.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crownet/simulations/cmp_vadere_sumo/sumo/mf_base/plain.con.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/cmp_vadere_sumo/sumo/mf_base/plain.con.xml -------------------------------------------------------------------------------- /crownet/simulations/cmp_vadere_sumo/sumo/mf_base/plain.edg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/cmp_vadere_sumo/sumo/mf_base/plain.edg.xml -------------------------------------------------------------------------------- /crownet/simulations/cmp_vadere_sumo/sumo/mf_base/plain.nod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/cmp_vadere_sumo/sumo/mf_base/plain.nod.xml -------------------------------------------------------------------------------- /crownet/simulations/cmp_vadere_sumo/sumo/mf_base/plain.tll.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/cmp_vadere_sumo/sumo/mf_base/plain.tll.xml -------------------------------------------------------------------------------- /crownet/simulations/cmp_vadere_sumo/sumo/mf_base/plain.typ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/cmp_vadere_sumo/sumo/mf_base/plain.typ.xml -------------------------------------------------------------------------------- /crownet/simulations/cmp_vadere_sumo/sumo/mf_base/sumo-001.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/cmp_vadere_sumo/sumo/mf_base/sumo-001.log -------------------------------------------------------------------------------- /crownet/simulations/cmp_vadere_sumo/sumo/simple/simple.net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/cmp_vadere_sumo/sumo/simple/simple.net.xml -------------------------------------------------------------------------------- /crownet/simulations/cmp_vadere_sumo/sumo/simple/simple.rou.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/cmp_vadere_sumo/sumo/simple/simple.rou.xml -------------------------------------------------------------------------------- /crownet/simulations/cmp_vadere_sumo/sumo/simple/simple.sumo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/cmp_vadere_sumo/sumo/simple/simple.sumo.cfg -------------------------------------------------------------------------------- /crownet/simulations/cmp_vadere_sumo/sumo/simple/trips.trips.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/cmp_vadere_sumo/sumo/simple/trips.trips.xml -------------------------------------------------------------------------------- /crownet/simulations/cmp_vadere_sumo/vadere/scenarios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/cmp_vadere_sumo/vadere/scenarios/README.md -------------------------------------------------------------------------------- /crownet/simulations/cmp_vadere_sumo/vadere/vadere.project: -------------------------------------------------------------------------------- 1 | mucFreiNetdLTE2dMulticast -------------------------------------------------------------------------------- /crownet/simulations/coviCom21/World.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/coviCom21/World.ned -------------------------------------------------------------------------------- /crownet/simulations/coviCom21/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/coviCom21/analysis.py -------------------------------------------------------------------------------- /crownet/simulations/coviCom21/gdb_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/coviCom21/gdb_run.sh -------------------------------------------------------------------------------- /crownet/simulations/coviCom21/ip4Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/coviCom21/ip4Config.xml -------------------------------------------------------------------------------- /crownet/simulations/coviCom21/mf_klein_initial_peds_env.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/coviCom21/mf_klein_initial_peds_env.xml -------------------------------------------------------------------------------- /crownet/simulations/coviCom21/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/coviCom21/omnetpp.ini -------------------------------------------------------------------------------- /crownet/simulations/coviCom21/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/coviCom21/run -------------------------------------------------------------------------------- /crownet/simulations/coviCom21/vadere/vadere.project: -------------------------------------------------------------------------------- 1 | mucFreiNetdLTE2dMulticast -------------------------------------------------------------------------------- /crownet/simulations/densityMap/.gitignore: -------------------------------------------------------------------------------- 1 | study/*.d 2 | -------------------------------------------------------------------------------- /crownet/simulations/densityMap/analysis/s0_1d_rate_change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/densityMap/analysis/s0_1d_rate_change.py -------------------------------------------------------------------------------- /crownet/simulations/densityMap/analysis/s1_1d_bm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/densityMap/analysis/s1_1d_bm.py -------------------------------------------------------------------------------- /crownet/simulations/densityMap/analysis/s2_stationary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/densityMap/analysis/s2_stationary.py -------------------------------------------------------------------------------- /crownet/simulations/densityMap/analysis/s3_dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/densityMap/analysis/s3_dynamic.py -------------------------------------------------------------------------------- /crownet/simulations/densityMap/application_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/densityMap/application_settings.ini -------------------------------------------------------------------------------- /crownet/simulations/densityMap/eNB_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/densityMap/eNB_settings.ini -------------------------------------------------------------------------------- /crownet/simulations/densityMap/general.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/densityMap/general.ini -------------------------------------------------------------------------------- /crownet/simulations/densityMap/ip4Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/densityMap/ip4Config.xml -------------------------------------------------------------------------------- /crownet/simulations/densityMap/misc_pos.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/densityMap/misc_pos.ini -------------------------------------------------------------------------------- /crownet/simulations/densityMap/mobility_provider.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/densityMap/mobility_provider.ini -------------------------------------------------------------------------------- /crownet/simulations/densityMap/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/densityMap/omnetpp.ini -------------------------------------------------------------------------------- /crownet/simulations/densityMap/pos_provider.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/densityMap/pos_provider.sh -------------------------------------------------------------------------------- /crownet/simulations/densityMap/run_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/densityMap/run_script.py -------------------------------------------------------------------------------- /crownet/simulations/densityMap/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/densityMap/services.xml -------------------------------------------------------------------------------- /crownet/simulations/densityMap/study/mf_1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/densityMap/study/mf_1d.py -------------------------------------------------------------------------------- /crownet/simulations/densityMap/study/mf_1d_2peds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/densityMap/study/mf_1d_2peds.py -------------------------------------------------------------------------------- /crownet/simulations/densityMap/study/mf_1d_bm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/densityMap/study/mf_1d_bm.py -------------------------------------------------------------------------------- /crownet/simulations/densityMap/study/s0_1d_bm_change_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/densityMap/study/s0_1d_bm_change_rate.py -------------------------------------------------------------------------------- /crownet/simulations/densityMap/sumo/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crownet/simulations/densityMap/sumo/munich/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/densityMap/sumo/munich/.gitattributes -------------------------------------------------------------------------------- /crownet/simulations/densityMap/sumo/munich/munich.net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/densityMap/sumo/munich/munich.net.xml -------------------------------------------------------------------------------- /crownet/simulations/densityMap/sumo/munich/osm/munich_clean.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/densityMap/sumo/munich/osm/munich_clean.osm -------------------------------------------------------------------------------- /crownet/simulations/densityMap/vadere/scenarios/circle.scenario: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/densityMap/vadere/scenarios/circle.scenario -------------------------------------------------------------------------------- /crownet/simulations/densityMap/vadere/vadere.project: -------------------------------------------------------------------------------- 1 | mucFreiNetdLTE2dMulticast -------------------------------------------------------------------------------- /crownet/simulations/guiding_crowds_test/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crownet/simulations/guiding_crowds_test/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/guiding_crowds_test/control.py -------------------------------------------------------------------------------- /crownet/simulations/guiding_crowds_test/ip4Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/guiding_crowds_test/ip4Config.xml -------------------------------------------------------------------------------- /crownet/simulations/guiding_crowds_test/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/guiding_crowds_test/omnetpp.ini -------------------------------------------------------------------------------- /crownet/simulations/guiding_crowds_test/run_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/guiding_crowds_test/run_script.py -------------------------------------------------------------------------------- /crownet/simulations/guiding_crowds_test/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/guiding_crowds_test/services.xml -------------------------------------------------------------------------------- /crownet/simulations/guiding_crowds_test/test_run_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/guiding_crowds_test/test_run_simulation.py -------------------------------------------------------------------------------- /crownet/simulations/guiding_crowds_test/vadere/vadere.project: -------------------------------------------------------------------------------- 1 | mucFreiNetdLTE2dMulticast -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/analysis.d/create_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/analysis.d/create_images.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/analysis.d/d2d_muc_sumo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/analysis.d/d2d_muc_sumo.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/analysis.d/geo-maps.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/analysis.d/geo-maps.ipynb -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/analysis.d/mergepdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/analysis.d/mergepdf.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/analysis.d/out.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/analysis.d/out.pdf -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/analysis.d/out_ymfplus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/analysis.d/out_ymfplus.pdf -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/analysis.d/wip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/analysis.d/wip.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/analysis.d/wip001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/analysis.d/wip001.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/analysis.d/wip_test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/analysis.d/wip_test.ipynb -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/gdb_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/gdb_run.sh -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/ip4Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/ip4Config.xml -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/muc_stationary.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/muc_stationary.ini -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/muc_subway_100_uniform.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/muc_subway_100_uniform.ini -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/omnetpp.ini -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/omnetpp_ymfd4s.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/omnetpp_ymfd4s.ini -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/omnetpp_ymfd4s_onePacket.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/omnetpp_ymfd4s_onePacket.ini -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/run_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/run_script.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/services.xml -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/study/circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/study/circle.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/study/dash_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/study/dash_analysis.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/study/dcdMap_muc01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/study/dcdMap_muc01.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/study/dcdMap_muc02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/study/dcdMap_muc02.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/study/dcdMap_muc03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/study/dcdMap_muc03.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/study/dcdMap_muc03_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/study/dcdMap_muc03_b.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/study/dcdMap_muc04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/study/dcdMap_muc04.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/study/dcdMap_muc05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/study/dcdMap_muc05.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/study/dcdMap_muc10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/study/dcdMap_muc10.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/study/dcdMap_muc11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/study/dcdMap_muc11.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/study/dcdMap_muc12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/study/dcdMap_muc12.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/study/dcdMap_muc13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/study/dcdMap_muc13.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/study/dcdMap_muc14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/study/dcdMap_muc14.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/study/dcdMap_sumo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/study/dcdMap_sumo.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/study/subwayStatic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/study/subwayStatic.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/study/ymfDistDbg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/study/ymfDistDbg.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/study/ymfDistDbg2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/study/ymfDistDbg2.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/study/ymfDistDbg3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/study/ymfDistDbg3.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/study/ymfDistDbg4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/study/ymfDistDbg4.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/study/ymfDistDbg5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/study/ymfDistDbg5.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/study/ymfDistDbg6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/study/ymfDistDbg6.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/study/ymfDistDbg7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/study/ymfDistDbg7.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/sumo/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/sumo/base/mf_base.net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/sumo/base/mf_base.net.xml -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/sumo/base/mf_base_env.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/sumo/base/mf_base_env.xml -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/sumo/munich/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/sumo/munich/.gitattributes -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/sumo/munich/3peds.rou.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/sumo/munich/3peds.rou.xml -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/sumo/munich/3peds.sumo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/sumo/munich/3peds.sumo.cfg -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/sumo/munich/3peds.trips.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/sumo/munich/3peds.trips.xml -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/sumo/munich/munich.net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/sumo/munich/munich.net.xml -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/sumo/munich/munich.rou.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/sumo/munich/munich.rou.xml -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/sumo/munich/munich.trips.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/sumo/munich/munich.trips.xml -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/sumo/munich/munich_2.net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/sumo/munich/munich_2.net.xml -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/sumo/munich/tools_cfg/munich.net.xml: -------------------------------------------------------------------------------- 1 | ../munich.net.xml -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/sumo/plain/plain.con.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/sumo/plain/plain.con.xml -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/sumo/plain/plain.edg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/sumo/plain/plain.edg.xml -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/sumo/plain/plain.nod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/sumo/plain/plain.nod.xml -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/sumo/plain/plain.tll.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/sumo/plain/plain.tll.xml -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/sumo/plain/plain.typ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/sumo/plain/plain.typ.xml -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/vadere/scenarios/mf_base.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheitLte/vadere/scenarios/mf_base.osm -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheitLte/vadere/vadere.project: -------------------------------------------------------------------------------- 1 | mucFreiNetdLTE2dMulticast -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheit_route_choice_app/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheit_route_choice_app/control.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheit_route_choice_app/ip4Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheit_route_choice_app/ip4Config.xml -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheit_route_choice_app/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheit_route_choice_app/omnetpp.ini -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheit_route_choice_app/run_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheit_route_choice_app/run_script.py -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheit_route_choice_app/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/mucFreiheit_route_choice_app/services.xml -------------------------------------------------------------------------------- /crownet/simulations/mucFreiheit_route_choice_app/vadere/vadere.project: -------------------------------------------------------------------------------- 1 | mucFreiNetdLTE2dMulticast -------------------------------------------------------------------------------- /crownet/simulations/muenchnerFreiheit/omnetpp.ini: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /crownet/simulations/muenchnerFreiheit/package.ned: -------------------------------------------------------------------------------- 1 | package crownet.simulations.muenchnerFreiheit; 2 | 3 | @license(LGPL); 4 | -------------------------------------------------------------------------------- /crownet/simulations/muenchnerFreiheit/stsc/.qtenvrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/muenchnerFreiheit/stsc/.qtenvrc -------------------------------------------------------------------------------- /crownet/simulations/muenchnerFreiheit/timoKlein/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/muenchnerFreiheit/timoKlein/omnetpp.ini -------------------------------------------------------------------------------- /crownet/simulations/muenchnerFreiheit/timoKlein/package.ned: -------------------------------------------------------------------------------- 1 | package crownet.simulations.muenchnerFreiheit.timoKlein; 2 | 3 | @license(LGPL); 4 | -------------------------------------------------------------------------------- /crownet/simulations/muenchnerFreiheit/timoKlein/vadere/vadere.project: -------------------------------------------------------------------------------- 1 | roVer - BA Timo Klein -------------------------------------------------------------------------------- /crownet/simulations/multi_enb/World.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/multi_enb/World.ned -------------------------------------------------------------------------------- /crownet/simulations/multi_enb/analysis_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/multi_enb/analysis_test.py -------------------------------------------------------------------------------- /crownet/simulations/multi_enb/application_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/multi_enb/application_settings.ini -------------------------------------------------------------------------------- /crownet/simulations/multi_enb/eNB_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/multi_enb/eNB_settings.ini -------------------------------------------------------------------------------- /crownet/simulations/multi_enb/enb_muc_clean5x3.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/multi_enb/enb_muc_clean5x3.ini -------------------------------------------------------------------------------- /crownet/simulations/multi_enb/general.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/multi_enb/general.ini -------------------------------------------------------------------------------- /crownet/simulations/multi_enb/generate_enb_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/multi_enb/generate_enb_grid.py -------------------------------------------------------------------------------- /crownet/simulations/multi_enb/ip4Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/multi_enb/ip4Config.xml -------------------------------------------------------------------------------- /crownet/simulations/multi_enb/misc_muc_clean5x3.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/multi_enb/misc_muc_clean5x3.ini -------------------------------------------------------------------------------- /crownet/simulations/multi_enb/mobility_provider.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/multi_enb/mobility_provider.ini -------------------------------------------------------------------------------- /crownet/simulations/multi_enb/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/multi_enb/omnetpp.ini -------------------------------------------------------------------------------- /crownet/simulations/multi_enb/run_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/multi_enb/run_script.py -------------------------------------------------------------------------------- /crownet/simulations/multi_enb/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/multi_enb/services.xml -------------------------------------------------------------------------------- /crownet/simulations/multi_enb/sumo/clean_sumo_traces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/multi_enb/sumo/clean_sumo_traces.py -------------------------------------------------------------------------------- /crownet/simulations/multi_enb/sumo/munich/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/multi_enb/sumo/munich/.gitattributes -------------------------------------------------------------------------------- /crownet/simulations/multi_enb/sumo/munich/osm/munich_clean.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/multi_enb/sumo/munich/osm/munich_clean.osm -------------------------------------------------------------------------------- /crownet/simulations/multi_enb/sumo/run_sumo_simulations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/multi_enb/sumo/run_sumo_simulations.py -------------------------------------------------------------------------------- /crownet/simulations/multi_enb/traces/pnode_4x3.bonnmotion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/multi_enb/traces/pnode_4x3.bonnmotion -------------------------------------------------------------------------------- /crownet/simulations/multi_enb/traces/pnode_5x4.bonnmotion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/multi_enb/traces/pnode_5x4.bonnmotion -------------------------------------------------------------------------------- /crownet/simulations/networks/LTE_d2d.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/networks/LTE_d2d.ned -------------------------------------------------------------------------------- /crownet/simulations/networks/LabSingleCell.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/networks/LabSingleCell.ned -------------------------------------------------------------------------------- /crownet/simulations/networks/World.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/networks/World.ned -------------------------------------------------------------------------------- /crownet/simulations/networks/World_Wlan.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/networks/World_Wlan.ned -------------------------------------------------------------------------------- /crownet/simulations/networks/default_configs.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/networks/default_configs.ini -------------------------------------------------------------------------------- /crownet/simulations/networks/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/networks/services.xml -------------------------------------------------------------------------------- /crownet/simulations/openair/activate_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/openair/activate_venv.sh -------------------------------------------------------------------------------- /crownet/simulations/openair/analyse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/openair/analyse.py -------------------------------------------------------------------------------- /crownet/simulations/openair/demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/openair/demo.xml -------------------------------------------------------------------------------- /crownet/simulations/openair/download_measurements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/openair/download_measurements.sh -------------------------------------------------------------------------------- /crownet/simulations/openair/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/openair/omnetpp.ini -------------------------------------------------------------------------------- /crownet/simulations/openair/requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | numpy 3 | matplotlib 4 | oppanalyzer -------------------------------------------------------------------------------- /crownet/simulations/openair/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/openair/run -------------------------------------------------------------------------------- /crownet/simulations/openair/runall_configs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/openair/runall_configs -------------------------------------------------------------------------------- /crownet/simulations/package.ned: -------------------------------------------------------------------------------- 1 | package crownet.simulations; 2 | 3 | @license(LGPL); 4 | -------------------------------------------------------------------------------- /crownet/simulations/route_choice_app/.gitignore: -------------------------------------------------------------------------------- 1 | simplified*/ 2 | vadere-server.jar 3 | summary.odp 4 | *log.gz 5 | *.txt 6 | -------------------------------------------------------------------------------- /crownet/simulations/route_choice_app/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/route_choice_app/control.py -------------------------------------------------------------------------------- /crownet/simulations/route_choice_app/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/route_choice_app/omnetpp.ini -------------------------------------------------------------------------------- /crownet/simulations/route_choice_app/run_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/route_choice_app/run_script.py -------------------------------------------------------------------------------- /crownet/simulations/route_choice_app/vadere/vadere.project: -------------------------------------------------------------------------------- 1 | mucFreiNetdLTE2dMulticast -------------------------------------------------------------------------------- /crownet/simulations/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/run -------------------------------------------------------------------------------- /crownet/simulations/separation_slow_fast/.qtenvrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/separation_slow_fast/.qtenvrc -------------------------------------------------------------------------------- /crownet/simulations/separation_slow_fast/ip4Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/separation_slow_fast/ip4Config.xml -------------------------------------------------------------------------------- /crownet/simulations/separation_slow_fast/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/separation_slow_fast/omnetpp.ini -------------------------------------------------------------------------------- /crownet/simulations/separation_slow_fast/startsim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/separation_slow_fast/startsim.sh -------------------------------------------------------------------------------- /crownet/simulations/separation_slow_fast/vadere/scenarios/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crownet/simulations/separation_slow_fast/vadere/vadere.project: -------------------------------------------------------------------------------- 1 | simple_detoure -------------------------------------------------------------------------------- /crownet/simulations/simple_detoure_suqc_traffic/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/simple_detoure_suqc_traffic/omnetpp.ini -------------------------------------------------------------------------------- /crownet/simulations/simple_detoure_suqc_traffic/run_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/simple_detoure_suqc_traffic/run_script.py -------------------------------------------------------------------------------- /crownet/simulations/simple_detoure_suqc_traffic/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/simple_detoure_suqc_traffic/services.xml -------------------------------------------------------------------------------- /crownet/simulations/simple_detoure_suqc_traffic/vadere/scenarios/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crownet/simulations/simple_detoure_suqc_traffic/vadere/vadere.project: -------------------------------------------------------------------------------- 1 | simple_detoure -------------------------------------------------------------------------------- /crownet/simulations/storyboard/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/storyboard/demo.py -------------------------------------------------------------------------------- /crownet/simulations/storyboard/den-use-cases.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/storyboard/den-use-cases.xml -------------------------------------------------------------------------------- /crownet/simulations/storyboard/ip4Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/storyboard/ip4Config.xml -------------------------------------------------------------------------------- /crownet/simulations/storyboard/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/storyboard/omnetpp.ini -------------------------------------------------------------------------------- /crownet/simulations/storyboard/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/storyboard/services.xml -------------------------------------------------------------------------------- /crownet/simulations/storyboard/vadere/scenarios/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crownet/simulations/storyboard/vadere/scenarios/test.scenario: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/storyboard/vadere/scenarios/test.scenario -------------------------------------------------------------------------------- /crownet/simulations/storyboard/vadere/vadere.project: -------------------------------------------------------------------------------- 1 | simple_detoure -------------------------------------------------------------------------------- /crownet/simulations/supermarket/vadere.project: -------------------------------------------------------------------------------- 1 | supermarket_covid19 -------------------------------------------------------------------------------- /crownet/simulations/testSim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/testSim/README.md -------------------------------------------------------------------------------- /crownet/simulations/testSim/control_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/testSim/control_1.py -------------------------------------------------------------------------------- /crownet/simulations/testSim/control_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/testSim/control_2.py -------------------------------------------------------------------------------- /crownet/simulations/testSim/ip4Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/testSim/ip4Config.xml -------------------------------------------------------------------------------- /crownet/simulations/testSim/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/testSim/omnetpp.ini -------------------------------------------------------------------------------- /crownet/simulations/testSim/run_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/testSim/run_script.py -------------------------------------------------------------------------------- /crownet/simulations/testSim/sumo/example.net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/testSim/sumo/example.net.xml -------------------------------------------------------------------------------- /crownet/simulations/testSim/sumo/example_peds.rou.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/testSim/sumo/example_peds.rou.xml -------------------------------------------------------------------------------- /crownet/simulations/testSim/sumo/example_peds.sumo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/testSim/sumo/example_peds.sumo.cfg -------------------------------------------------------------------------------- /crownet/simulations/testSim/sumo/example_peds_cars.rou.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/testSim/sumo/example_peds_cars.rou.xml -------------------------------------------------------------------------------- /crownet/simulations/testSim/sumo/example_peds_cars.sumo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/testSim/sumo/example_peds_cars.sumo.cfg -------------------------------------------------------------------------------- /crownet/simulations/testSim/vadere/scenarios/mf_2peds.scenario: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/testSim/vadere/scenarios/mf_2peds.scenario -------------------------------------------------------------------------------- /crownet/simulations/testSim/vadere/scenarios/mf_2peds_env.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/testSim/vadere/scenarios/mf_2peds_env.xml -------------------------------------------------------------------------------- /crownet/simulations/testSim/vadere/scenarios/test001.scenario: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/testSim/vadere/scenarios/test001.scenario -------------------------------------------------------------------------------- /crownet/simulations/testSim/vadere/scenarios/test001_env.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/testSim/vadere/scenarios/test001_env.xml -------------------------------------------------------------------------------- /crownet/simulations/testSim/vadere/scenarios/test002.scenario: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/testSim/vadere/scenarios/test002.scenario -------------------------------------------------------------------------------- /crownet/simulations/testSim/vadere/scenarios/test002_env.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/testSim/vadere/scenarios/test002_env.xml -------------------------------------------------------------------------------- /crownet/simulations/testSim/vadere/vadere.project: -------------------------------------------------------------------------------- 1 | mucFreiNetdLTE2dMulticast -------------------------------------------------------------------------------- /crownet/simulations/vam_test/ip4Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vam_test/ip4Config.xml -------------------------------------------------------------------------------- /crownet/simulations/vam_test/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vam_test/omnetpp.ini -------------------------------------------------------------------------------- /crownet/simulations/vam_test/run_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vam_test/run_script.py -------------------------------------------------------------------------------- /crownet/simulations/vam_test/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vam_test/services.xml -------------------------------------------------------------------------------- /crownet/simulations/vam_test/study/sumo_study.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vam_test/study/sumo_study.py -------------------------------------------------------------------------------- /crownet/simulations/vruMec/MECWorld.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vruMec/MECWorld.ned -------------------------------------------------------------------------------- /crownet/simulations/vruMec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vruMec/README.md -------------------------------------------------------------------------------- /crownet/simulations/vruMec/demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vruMec/demo.xml -------------------------------------------------------------------------------- /crownet/simulations/vruMec/omnetpp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vruMec/omnetpp.ini -------------------------------------------------------------------------------- /crownet/simulations/vruMec/sumo/luitpoldpark/osm.net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vruMec/sumo/luitpoldpark/osm.net.xml -------------------------------------------------------------------------------- /crownet/simulations/vruMec/sumo/luitpoldpark/osm.poly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vruMec/sumo/luitpoldpark/osm.poly.xml -------------------------------------------------------------------------------- /crownet/simulations/vruMec/sumo/luitpoldpark/osm.rou.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vruMec/sumo/luitpoldpark/osm.rou.xml -------------------------------------------------------------------------------- /crownet/simulations/vruMec/sumo/luitpoldpark/osm.sumocfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vruMec/sumo/luitpoldpark/osm.sumocfg -------------------------------------------------------------------------------- /crownet/simulations/vruMec/sumo/luitpoldpark/osm_bbox.osm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vruMec/sumo/luitpoldpark/osm_bbox.osm.xml -------------------------------------------------------------------------------- /crownet/simulations/vruMec/sumo/luitpoldpark_conf/osm.net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vruMec/sumo/luitpoldpark_conf/osm.net.xml -------------------------------------------------------------------------------- /crownet/simulations/vruMec/sumo/luitpoldpark_conf/osm.poly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vruMec/sumo/luitpoldpark_conf/osm.poly.xml -------------------------------------------------------------------------------- /crownet/simulations/vruMec/sumo/luitpoldpark_conf/osm.rou.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vruMec/sumo/luitpoldpark_conf/osm.rou.xml -------------------------------------------------------------------------------- /crownet/simulations/vruMec/sumo/luitpoldpark_conf/osm.sumocfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vruMec/sumo/luitpoldpark_conf/osm.sumocfg -------------------------------------------------------------------------------- /crownet/simulations/vruMec/sumo/luitpoldpark_large/osm.net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vruMec/sumo/luitpoldpark_large/osm.net.xml -------------------------------------------------------------------------------- /crownet/simulations/vruMec/sumo/luitpoldpark_large/osm.poly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vruMec/sumo/luitpoldpark_large/osm.poly.xml -------------------------------------------------------------------------------- /crownet/simulations/vruMec/sumo/luitpoldpark_large/osm.rou.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vruMec/sumo/luitpoldpark_large/osm.rou.xml -------------------------------------------------------------------------------- /crownet/simulations/vruMec/sumo/luitpoldpark_large/osm.sumocfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vruMec/sumo/luitpoldpark_large/osm.sumocfg -------------------------------------------------------------------------------- /crownet/simulations/vruMec/sumo/luitpoldpark_prio/osm.net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vruMec/sumo/luitpoldpark_prio/osm.net.xml -------------------------------------------------------------------------------- /crownet/simulations/vruMec/sumo/luitpoldpark_prio/osm.poly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vruMec/sumo/luitpoldpark_prio/osm.poly.xml -------------------------------------------------------------------------------- /crownet/simulations/vruMec/sumo/luitpoldpark_prio/osm.rou.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vruMec/sumo/luitpoldpark_prio/osm.rou.xml -------------------------------------------------------------------------------- /crownet/simulations/vruMec/sumo/luitpoldpark_prio/osm.sumocfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vruMec/sumo/luitpoldpark_prio/osm.sumocfg -------------------------------------------------------------------------------- /crownet/simulations/vruMec/sumo/route_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/simulations/vruMec/sumo/route_gen.py -------------------------------------------------------------------------------- /crownet/src/crownet/aid/Aid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/aid/Aid.cc -------------------------------------------------------------------------------- /crownet/src/crownet/aid/Aid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/aid/Aid.h -------------------------------------------------------------------------------- /crownet/src/crownet/aid/Aid.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/aid/Aid.ned -------------------------------------------------------------------------------- /crownet/src/crownet/aid/AidCommand.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/aid/AidCommand.msg -------------------------------------------------------------------------------- /crownet/src/crownet/aid/AidConnection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/aid/AidConnection.cc -------------------------------------------------------------------------------- /crownet/src/crownet/aid/AidConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/aid/AidConnection.h -------------------------------------------------------------------------------- /crownet/src/crownet/aid/AidConnection.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/aid/AidConnection.ned -------------------------------------------------------------------------------- /crownet/src/crownet/aid/AidConnection_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/aid/AidConnection_test.cc -------------------------------------------------------------------------------- /crownet/src/crownet/aid/AidHeader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/aid/AidHeader.cc -------------------------------------------------------------------------------- /crownet/src/crownet/aid/AidHeader.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/aid/AidHeader.msg -------------------------------------------------------------------------------- /crownet/src/crownet/aid/AidLayer.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/aid/AidLayer.ned -------------------------------------------------------------------------------- /crownet/src/crownet/aid/AidSocket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/aid/AidSocket.cc -------------------------------------------------------------------------------- /crownet/src/crownet/aid/AidSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/aid/AidSocket.h -------------------------------------------------------------------------------- /crownet/src/crownet/aid/AidSocket_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/aid/AidSocket_test.cc -------------------------------------------------------------------------------- /crownet/src/crownet/aid/Aid_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/aid/Aid_test.cc -------------------------------------------------------------------------------- /crownet/src/crownet/aid/algorithms/AidAlgorithm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/aid/algorithms/AidAlgorithm.cc -------------------------------------------------------------------------------- /crownet/src/crownet/aid/algorithms/AidAlgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/aid/algorithms/AidAlgorithm.h -------------------------------------------------------------------------------- /crownet/src/crownet/aid/algorithms/AidAlgorithm_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/aid/algorithms/AidAlgorithm_test.cc -------------------------------------------------------------------------------- /crownet/src/crownet/applications/beacon/Beacon.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/beacon/Beacon.msg -------------------------------------------------------------------------------- /crownet/src/crownet/applications/beacon/BeaconApp.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/beacon/BeaconApp.ned -------------------------------------------------------------------------------- /crownet/src/crownet/applications/beacon/BeaconDynamic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/beacon/BeaconDynamic.cc -------------------------------------------------------------------------------- /crownet/src/crownet/applications/beacon/BeaconDynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/beacon/BeaconDynamic.h -------------------------------------------------------------------------------- /crownet/src/crownet/applications/common/AidSocketManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/common/AidSocketManager.cc -------------------------------------------------------------------------------- /crownet/src/crownet/applications/common/AidSocketManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/common/AidSocketManager.h -------------------------------------------------------------------------------- /crownet/src/crownet/applications/common/AppCommon.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/common/AppCommon.msg -------------------------------------------------------------------------------- /crownet/src/crownet/applications/common/AppFsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/common/AppFsm.h -------------------------------------------------------------------------------- /crownet/src/crownet/applications/common/BaseApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/common/BaseApp.cc -------------------------------------------------------------------------------- /crownet/src/crownet/applications/common/BaseApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/common/BaseApp.h -------------------------------------------------------------------------------- /crownet/src/crownet/applications/common/BaseApp.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/common/BaseApp.ned -------------------------------------------------------------------------------- /crownet/src/crownet/applications/common/BaseBroadcast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/common/BaseBroadcast.cc -------------------------------------------------------------------------------- /crownet/src/crownet/applications/common/BaseBroadcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/common/BaseBroadcast.h -------------------------------------------------------------------------------- /crownet/src/crownet/applications/common/BaseBroadcast.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/common/BaseBroadcast.ned -------------------------------------------------------------------------------- /crownet/src/crownet/applications/common/BaseSocketManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/common/BaseSocketManager.cc -------------------------------------------------------------------------------- /crownet/src/crownet/applications/common/BaseSocketManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/common/BaseSocketManager.h -------------------------------------------------------------------------------- /crownet/src/crownet/applications/common/CrownetApp.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/common/CrownetApp.ned -------------------------------------------------------------------------------- /crownet/src/crownet/applications/common/CrownetSocket.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/common/CrownetSocket.ned -------------------------------------------------------------------------------- /crownet/src/crownet/applications/common/TraCIController.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/common/TraCIController.ned -------------------------------------------------------------------------------- /crownet/src/crownet/applications/common/UdpSocketManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/common/UdpSocketManager.cc -------------------------------------------------------------------------------- /crownet/src/crownet/applications/common/UdpSocketManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/common/UdpSocketManager.h -------------------------------------------------------------------------------- /crownet/src/crownet/applications/common/info/AppInfo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/common/info/AppInfo.msg -------------------------------------------------------------------------------- /crownet/src/crownet/applications/common/info/AppInfoLocal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/common/info/AppInfoLocal.cc -------------------------------------------------------------------------------- /crownet/src/crownet/applications/common/info/AppInfoLocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/common/info/AppInfoLocal.h -------------------------------------------------------------------------------- /crownet/src/crownet/applications/common/info/AppRxInfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/common/info/AppRxInfo.cc -------------------------------------------------------------------------------- /crownet/src/crownet/applications/common/info/AppRxInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/common/info/AppRxInfo.h -------------------------------------------------------------------------------- /crownet/src/crownet/applications/common/info/InfoTags.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/common/info/InfoTags.msg -------------------------------------------------------------------------------- /crownet/src/crownet/applications/control/ControlApp.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/control/ControlApp.ned -------------------------------------------------------------------------------- /crownet/src/crownet/applications/control/control.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/control/control.msg -------------------------------------------------------------------------------- /crownet/src/crownet/applications/detour/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/detour/Changelog -------------------------------------------------------------------------------- /crownet/src/crownet/applications/detour/DetourAppPacket.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/detour/DetourAppPacket.msg -------------------------------------------------------------------------------- /crownet/src/crownet/applications/detour/UdpDetourApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/detour/UdpDetourApp.cc -------------------------------------------------------------------------------- /crownet/src/crownet/applications/detour/UdpDetourApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/detour/UdpDetourApp.h -------------------------------------------------------------------------------- /crownet/src/crownet/applications/detour/UdpDetourApp.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/detour/UdpDetourApp.ned -------------------------------------------------------------------------------- /crownet/src/crownet/applications/detour/UdpDetourAppVadere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/detour/UdpDetourAppVadere.h -------------------------------------------------------------------------------- /crownet/src/crownet/applications/dmap/ArteryDensityMapApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/dmap/ArteryDensityMapApp.cc -------------------------------------------------------------------------------- /crownet/src/crownet/applications/dmap/ArteryDensityMapApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/dmap/ArteryDensityMapApp.h -------------------------------------------------------------------------------- /crownet/src/crownet/applications/dmap/BaseDensityMapApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/dmap/BaseDensityMapApp.cc -------------------------------------------------------------------------------- /crownet/src/crownet/applications/dmap/BaseDensityMapApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/dmap/BaseDensityMapApp.h -------------------------------------------------------------------------------- /crownet/src/crownet/applications/dmap/DensityMapApp.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/dmap/DensityMapApp.ned -------------------------------------------------------------------------------- /crownet/src/crownet/applications/dmap/DensityMapAppSimple.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/dmap/DensityMapAppSimple.cc -------------------------------------------------------------------------------- /crownet/src/crownet/applications/dmap/DensityMapAppSimple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/dmap/DensityMapAppSimple.h -------------------------------------------------------------------------------- /crownet/src/crownet/applications/dmap/EntropyMapAppSimple.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/dmap/EntropyMapAppSimple.cc -------------------------------------------------------------------------------- /crownet/src/crownet/applications/dmap/EntropyMapAppSimple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/dmap/EntropyMapAppSimple.h -------------------------------------------------------------------------------- /crownet/src/crownet/applications/dmap/dmap.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/applications/dmap/dmap.msg -------------------------------------------------------------------------------- /crownet/src/crownet/artery/IDispatchRadioDriver.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/IDispatchRadioDriver.ned -------------------------------------------------------------------------------- /crownet/src/crownet/artery/PedestrianMiddleware.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/PedestrianMiddleware.cc -------------------------------------------------------------------------------- /crownet/src/crownet/artery/PedestrianMiddleware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/PedestrianMiddleware.h -------------------------------------------------------------------------------- /crownet/src/crownet/artery/PedestrianMiddleware.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/PedestrianMiddleware.ned -------------------------------------------------------------------------------- /crownet/src/crownet/artery/PedestrianMiddlewareEmpty.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/PedestrianMiddlewareEmpty.cc -------------------------------------------------------------------------------- /crownet/src/crownet/artery/PedestrianMiddlewareEmpty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/PedestrianMiddlewareEmpty.h -------------------------------------------------------------------------------- /crownet/src/crownet/artery/PedestrianMiddlewareEmpty.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/PedestrianMiddlewareEmpty.ned -------------------------------------------------------------------------------- /crownet/src/crownet/artery/World.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/World.ned -------------------------------------------------------------------------------- /crownet/src/crownet/artery/lte/GeoNetTag.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/lte/GeoNetTag.msg -------------------------------------------------------------------------------- /crownet/src/crownet/artery/lte/LteRadioDriver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/lte/LteRadioDriver.cc -------------------------------------------------------------------------------- /crownet/src/crownet/artery/lte/LteRadioDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/lte/LteRadioDriver.h -------------------------------------------------------------------------------- /crownet/src/crownet/artery/lte/LteRadioDriver.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/lte/LteRadioDriver.ned -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci.h -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/InetVaderePersonMobility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/InetVaderePersonMobility.cc -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/InetVaderePersonMobility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/InetVaderePersonMobility.h -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/RoverCore.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/RoverCore.ned -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/SumoCombinedNodeManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/SumoCombinedNodeManager.cc -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/SumoCombinedNodeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/SumoCombinedNodeManager.h -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/SumoCombinedNodeManager.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/SumoCombinedNodeManager.ned -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/SumoLauncher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/SumoLauncher.cc -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/SumoLauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/SumoLauncher.h -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/SumoLauncher.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/SumoLauncher.ned -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/TraCiForwarder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/TraCiForwarder.h -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/TraCiNodeVisitorAcceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/TraCiNodeVisitorAcceptor.h -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/VadereApi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/VadereApi.cc -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/VadereApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/VadereApi.h -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/VadereCore.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/VadereCore.cc -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/VadereCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/VadereCore.h -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/VadereLauncher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/VadereLauncher.cc -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/VadereLauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/VadereLauncher.h -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/VadereLauncher.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/VadereLauncher.ned -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/VadereModuleMapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/VadereModuleMapper.cc -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/VadereModuleMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/VadereModuleMapper.h -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/VadereModuleMapper.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/VadereModuleMapper.ned -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/VadereNodeManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/VadereNodeManager.cc -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/VadereNodeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/VadereNodeManager.h -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/VadereNodeManager.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/VadereNodeManager.ned -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/VaderePersonController.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/VaderePersonController.cc -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/VaderePersonController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/VaderePersonController.h -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/VaderePersonSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/VaderePersonSink.h -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/VadereSubscriptionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/VadereSubscriptionManager.h -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/VadereUtils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/VadereUtils.cc -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/VadereUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/VadereUtils.h -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/VariableCache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/VariableCache.cc -------------------------------------------------------------------------------- /crownet/src/crownet/artery/traci/VariableCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/artery/traci/VariableCache.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/BurstIdSet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/BurstIdSet.cc -------------------------------------------------------------------------------- /crownet/src/crownet/common/BurstIdSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/BurstIdSet.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/CoordConverter.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/CoordConverter.ned -------------------------------------------------------------------------------- /crownet/src/crownet/common/DensityMapSceneCanvasVisualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/DensityMapSceneCanvasVisualizer.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/Entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/Entry.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/GlobalDensityMap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/GlobalDensityMap.cc -------------------------------------------------------------------------------- /crownet/src/crownet/common/GlobalDensityMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/GlobalDensityMap.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/GlobalDensityMap.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/GlobalDensityMap.ned -------------------------------------------------------------------------------- /crownet/src/crownet/common/GlobalEntropyMap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/GlobalEntropyMap.cc -------------------------------------------------------------------------------- /crownet/src/crownet/common/GlobalEntropyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/GlobalEntropyMap.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/IDensityMapHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/IDensityMapHandler.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/MobilityProviderMixin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/MobilityProviderMixin.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/ModuleAccess.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/ModuleAccess.cc -------------------------------------------------------------------------------- /crownet/src/crownet/common/ModuleAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/ModuleAccess.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/RegularGridInfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/RegularGridInfo.cc -------------------------------------------------------------------------------- /crownet/src/crownet/common/RegularGridInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/RegularGridInfo.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/RsdProviderMixin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/RsdProviderMixin.cc -------------------------------------------------------------------------------- /crownet/src/crownet/common/RsdProviderMixin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/RsdProviderMixin.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/SocketHandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/SocketHandler.cc -------------------------------------------------------------------------------- /crownet/src/crownet/common/SocketHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/SocketHandler.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/SocketHandler_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/SocketHandler_test.cc -------------------------------------------------------------------------------- /crownet/src/crownet/common/converter/OsgCoordConverter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/converter/OsgCoordConverter.cc -------------------------------------------------------------------------------- /crownet/src/crownet/common/converter/OsgCoordConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/converter/OsgCoordConverter.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/crownet.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/crownet.msg -------------------------------------------------------------------------------- /crownet/src/crownet/common/entropy/EntropyProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/entropy/EntropyProvider.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/entropy/UniformEntropy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/entropy/UniformEntropy.cc -------------------------------------------------------------------------------- /crownet/src/crownet/common/entropy/UniformEntropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/entropy/UniformEntropy.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/entropy/entropy.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/entropy/entropy.msg -------------------------------------------------------------------------------- /crownet/src/crownet/common/geometry/container/FreeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/geometry/container/FreeList.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/iterator/FilterIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/iterator/FilterIterator.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/iterator/FilterIterator.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/iterator/FilterIterator.tcc -------------------------------------------------------------------------------- /crownet/src/crownet/common/result/ResultFilters.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/result/ResultFilters.cc -------------------------------------------------------------------------------- /crownet/src/crownet/common/result/ResultFilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/result/ResultFilters.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/result/ResultRecorders.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/result/ResultRecorders.cc -------------------------------------------------------------------------------- /crownet/src/crownet/common/result/ResultRecorders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/result/ResultRecorders.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/result/Simsignals.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/result/Simsignals.cc -------------------------------------------------------------------------------- /crownet/src/crownet/common/result/Simsignals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/result/Simsignals.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/sumo/SumoSceneCanvasVisualizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/sumo/SumoSceneCanvasVisualizer.cc -------------------------------------------------------------------------------- /crownet/src/crownet/common/sumo/SumoSceneCanvasVisualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/sumo/SumoSceneCanvasVisualizer.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/util/FilePrinter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/util/FilePrinter.cc -------------------------------------------------------------------------------- /crownet/src/crownet/common/util/FilePrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/util/FilePrinter.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/util/FileWriter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/util/FileWriter.cc -------------------------------------------------------------------------------- /crownet/src/crownet/common/util/FileWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/util/FileWriter.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/util/FileWriter.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/util/FileWriter.msg -------------------------------------------------------------------------------- /crownet/src/crownet/common/util/FileWriterRegister.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/util/FileWriterRegister.cc -------------------------------------------------------------------------------- /crownet/src/crownet/common/util/FileWriterRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/util/FileWriterRegister.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/util/FileWriterRegister.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/util/FileWriterRegister.ned -------------------------------------------------------------------------------- /crownet/src/crownet/common/util/NedFunctions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/util/NedFunctions.cc -------------------------------------------------------------------------------- /crownet/src/crownet/common/util/NeighborhoodEventWriter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/util/NeighborhoodEventWriter.cc -------------------------------------------------------------------------------- /crownet/src/crownet/common/util/NeighborhoodEventWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/util/NeighborhoodEventWriter.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/util/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/util/RingBuffer.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/util/SqlLiteWriter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/util/SqlLiteWriter.cc -------------------------------------------------------------------------------- /crownet/src/crownet/common/util/SqlLiteWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/util/SqlLiteWriter.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/util/Writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/util/Writer.cc -------------------------------------------------------------------------------- /crownet/src/crownet/common/util/Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/util/Writer.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/util/crownet_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/util/crownet_util.cc -------------------------------------------------------------------------------- /crownet/src/crownet/common/util/crownet_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/util/crownet_util.h -------------------------------------------------------------------------------- /crownet/src/crownet/common/util/crownet_util.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/common/util/crownet_util.msg -------------------------------------------------------------------------------- /crownet/src/crownet/control/ControlHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/control/ControlHandler.h -------------------------------------------------------------------------------- /crownet/src/crownet/control/ControlManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/control/ControlManager.cc -------------------------------------------------------------------------------- /crownet/src/crownet/control/ControlManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/control/ControlManager.h -------------------------------------------------------------------------------- /crownet/src/crownet/control/ControlManager.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/control/ControlManager.ned -------------------------------------------------------------------------------- /crownet/src/crownet/control/ControlTraCiApi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/control/ControlTraCiApi.cc -------------------------------------------------------------------------------- /crownet/src/crownet/control/ControlTraCiApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/control/ControlTraCiApi.h -------------------------------------------------------------------------------- /crownet/src/crownet/crownet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/crownet.cc -------------------------------------------------------------------------------- /crownet/src/crownet/crownet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/crownet.h -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/common/Visitor_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/common/Visitor_check.h -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/generic/Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/generic/Cell.h -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/generic/Cell.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/generic/Cell.tcc -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/generic/CellIdStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/generic/CellIdStream.h -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/generic/CellIdStream.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/generic/CellIdStream.tcc -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/generic/CellVisitors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/generic/CellVisitors.h -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/generic/DcdMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/generic/DcdMap.h -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/generic/DcdMap.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/generic/DcdMap.tcc -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/generic/DcdMapWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/generic/DcdMapWatcher.h -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/generic/DcdMapWatcher.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/generic/DcdMapWatcher.tcc -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/generic/ICellIdStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/generic/ICellIdStream.h -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/generic/iterator/CellDataIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/generic/iterator/CellDataIterator.h -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/generic/iterator/DcDMapIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/generic/iterator/DcDMapIterator.h -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/generic/iterator/DcDMapIterator.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/generic/iterator/DcDMapIterator.tcc -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/identifier/CellKeyProvider.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/identifier/CellKeyProvider.cc -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/identifier/CellKeyProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/identifier/CellKeyProvider.h -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/identifier/Identifiers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/identifier/Identifiers.cc -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/identifier/Identifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/identifier/Identifiers.h -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/identifier/TimeProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/identifier/TimeProvider.h -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/regularGrid/RegularCell.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/regularGrid/RegularCell.cc -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/regularGrid/RegularCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/regularGrid/RegularCell.h -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/regularGrid/RegularCellVisitors.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/regularGrid/RegularCellVisitors.cc -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/regularGrid/RegularCellVisitors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/regularGrid/RegularCellVisitors.h -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/regularGrid/RegularDcdMap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/regularGrid/RegularDcdMap.cc -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/regularGrid/RegularDcdMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/regularGrid/RegularDcdMap.h -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/regularGrid/RegularDcdMapPrinter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/regularGrid/RegularDcdMapPrinter.cc -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/regularGrid/RegularDcdMapPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/regularGrid/RegularDcdMapPrinter.h -------------------------------------------------------------------------------- /crownet/src/crownet/dcd/regularGrid/visitors.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/dcd/regularGrid/visitors.msg -------------------------------------------------------------------------------- /crownet/src/crownet/mec/BeaconJSON.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mec/BeaconJSON.cc -------------------------------------------------------------------------------- /crownet/src/crownet/mec/BeaconJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mec/BeaconJSON.h -------------------------------------------------------------------------------- /crownet/src/crownet/mec/BeaconRepository.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mec/BeaconRepository.cc -------------------------------------------------------------------------------- /crownet/src/crownet/mec/BeaconRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mec/BeaconRepository.h -------------------------------------------------------------------------------- /crownet/src/crownet/mec/BeaconService.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mec/BeaconService.cc -------------------------------------------------------------------------------- /crownet/src/crownet/mec/BeaconService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mec/BeaconService.h -------------------------------------------------------------------------------- /crownet/src/crownet/mec/BeaconService.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mec/BeaconService.ned -------------------------------------------------------------------------------- /crownet/src/crownet/mec/MECBeaconApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mec/MECBeaconApp.cc -------------------------------------------------------------------------------- /crownet/src/crownet/mec/MECBeaconApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mec/MECBeaconApp.h -------------------------------------------------------------------------------- /crownet/src/crownet/mec/MECBeaconApp.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mec/MECBeaconApp.ned -------------------------------------------------------------------------------- /crownet/src/crownet/mec/UEBeaconApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mec/UEBeaconApp.cc -------------------------------------------------------------------------------- /crownet/src/crownet/mec/UEBeaconApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mec/UEBeaconApp.h -------------------------------------------------------------------------------- /crownet/src/crownet/mec/UEBeaconApp.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mec/UEBeaconApp.ned -------------------------------------------------------------------------------- /crownet/src/crownet/mec/UED2DBeaconApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mec/UED2DBeaconApp.cc -------------------------------------------------------------------------------- /crownet/src/crownet/mec/UED2DBeaconApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mec/UED2DBeaconApp.h -------------------------------------------------------------------------------- /crownet/src/crownet/mec/UED2DBeaconApp.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mec/UED2DBeaconApp.ned -------------------------------------------------------------------------------- /crownet/src/crownet/mec/UEMECApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mec/UEMECApp.cc -------------------------------------------------------------------------------- /crownet/src/crownet/mec/UEMECApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mec/UEMECApp.h -------------------------------------------------------------------------------- /crownet/src/crownet/mec/UEMECApp.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mec/UEMECApp.ned -------------------------------------------------------------------------------- /crownet/src/crownet/mec/aggregation/V2PP2VFilter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mec/aggregation/V2PP2VFilter.cc -------------------------------------------------------------------------------- /crownet/src/crownet/mec/packets/SimpleMECBeacon.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mec/packets/SimpleMECBeacon.msg -------------------------------------------------------------------------------- /crownet/src/crownet/mobility/BonnMotionMobilityClient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mobility/BonnMotionMobilityClient.cc -------------------------------------------------------------------------------- /crownet/src/crownet/mobility/BonnMotionMobilityClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mobility/BonnMotionMobilityClient.h -------------------------------------------------------------------------------- /crownet/src/crownet/mobility/BonnMotionMobilityClient.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mobility/BonnMotionMobilityClient.ned -------------------------------------------------------------------------------- /crownet/src/crownet/mobility/BonnMotionMobilityServer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mobility/BonnMotionMobilityServer.cc -------------------------------------------------------------------------------- /crownet/src/crownet/mobility/BonnMotionMobilityServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mobility/BonnMotionMobilityServer.h -------------------------------------------------------------------------------- /crownet/src/crownet/mobility/BonnMotionMobilityServer.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mobility/BonnMotionMobilityServer.ned -------------------------------------------------------------------------------- /crownet/src/crownet/mobility/IPositionHistoryProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/mobility/IPositionHistoryProvider.h -------------------------------------------------------------------------------- /crownet/src/crownet/neighbourhood/NeighborhoodTable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/neighbourhood/NeighborhoodTable.cc -------------------------------------------------------------------------------- /crownet/src/crownet/neighbourhood/NeighborhoodTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/neighbourhood/NeighborhoodTable.h -------------------------------------------------------------------------------- /crownet/src/crownet/neighbourhood/NeighborhoodTable.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/neighbourhood/NeighborhoodTable.ned -------------------------------------------------------------------------------- /crownet/src/crownet/nodes/AidPedestrian.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/nodes/AidPedestrian.ned -------------------------------------------------------------------------------- /crownet/src/crownet/nodes/AidVehicle.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/nodes/AidVehicle.ned -------------------------------------------------------------------------------- /crownet/src/crownet/nodes/ApplicationLayerPedestrian.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/nodes/ApplicationLayerPedestrian.ned -------------------------------------------------------------------------------- /crownet/src/crownet/nodes/ApplicationLayerVehicle.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/nodes/ApplicationLayerVehicle.ned -------------------------------------------------------------------------------- /crownet/src/crownet/nodes/ArteryPerson.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/nodes/ArteryPerson.ned -------------------------------------------------------------------------------- /crownet/src/crownet/nodes/IMobileUe.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/nodes/IMobileUe.ned -------------------------------------------------------------------------------- /crownet/src/crownet/nodes/MobileUe.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/nodes/MobileUe.ned -------------------------------------------------------------------------------- /crownet/src/crownet/nodes/PedestrianArtery.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/nodes/PedestrianArtery.ned -------------------------------------------------------------------------------- /crownet/src/crownet/nodes/TransportLayerRoadUser.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/nodes/TransportLayerRoadUser.ned -------------------------------------------------------------------------------- /crownet/src/crownet/nodes/UnequippedHost.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/nodes/UnequippedHost.ned -------------------------------------------------------------------------------- /crownet/src/crownet/package.ned: -------------------------------------------------------------------------------- 1 | package crownet; 2 | 3 | @license(LGPL); 4 | -------------------------------------------------------------------------------- /crownet/src/crownet/queueing/CrownetActivePacketSourceBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/queueing/CrownetActivePacketSourceBase.h -------------------------------------------------------------------------------- /crownet/src/crownet/queueing/CrownetPacketSourceBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/queueing/CrownetPacketSourceBase.cc -------------------------------------------------------------------------------- /crownet/src/crownet/queueing/CrownetPacketSourceBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/queueing/CrownetPacketSourceBase.h -------------------------------------------------------------------------------- /crownet/src/crownet/queueing/CrownetPacketSourceBase.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/queueing/CrownetPacketSourceBase.ned -------------------------------------------------------------------------------- /crownet/src/crownet/queueing/ICrownetActivePacketSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/queueing/ICrownetActivePacketSource.h -------------------------------------------------------------------------------- /crownet/src/crownet/queueing/meter/EmaPacketMeter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/queueing/meter/EmaPacketMeter.cc -------------------------------------------------------------------------------- /crownet/src/crownet/queueing/meter/EmaPacketMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/queueing/meter/EmaPacketMeter.h -------------------------------------------------------------------------------- /crownet/src/crownet/queueing/meter/GenericPacketMeter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/queueing/meter/GenericPacketMeter.cc -------------------------------------------------------------------------------- /crownet/src/crownet/queueing/meter/GenericPacketMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/queueing/meter/GenericPacketMeter.h -------------------------------------------------------------------------------- /crownet/src/crownet/queueing/meter/GenericPacketMeter.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/queueing/meter/GenericPacketMeter.ned -------------------------------------------------------------------------------- /crownet/src/crownet/queueing/meter/TemaPacketMeter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/queueing/meter/TemaPacketMeter.cc -------------------------------------------------------------------------------- /crownet/src/crownet/queueing/meter/TemaPacketMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/queueing/meter/TemaPacketMeter.h -------------------------------------------------------------------------------- /crownet/src/crownet/queueing/meter/meter.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/queueing/meter/meter.msg -------------------------------------------------------------------------------- /crownet/src/crownet/simu5g/stack/ip2nic/Geo2Nic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/simu5g/stack/ip2nic/Geo2Nic.cc -------------------------------------------------------------------------------- /crownet/src/crownet/simu5g/stack/ip2nic/Geo2Nic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/simu5g/stack/ip2nic/Geo2Nic.h -------------------------------------------------------------------------------- /crownet/src/crownet/simu5g/stack/ip2nic/Geo2Nic.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/crownet/simu5g/stack/ip2nic/Geo2Nic.ned -------------------------------------------------------------------------------- /crownet/src/makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/makefrag -------------------------------------------------------------------------------- /crownet/src/run_crownet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/run_crownet -------------------------------------------------------------------------------- /crownet/src/run_crownet_dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/src/run_crownet_dbg -------------------------------------------------------------------------------- /crownet/templates/crownet_with_vadere_sumo/omnetpp.ini.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/templates/crownet_with_vadere_sumo/omnetpp.ini.ftl -------------------------------------------------------------------------------- /crownet/templates/crownet_with_vadere_sumo/vadere/scenarios/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crownet/templates/crownet_with_vadere_sumo/vadere/vadere.project.ftl: -------------------------------------------------------------------------------- 1 | ${simulationFolderName} -------------------------------------------------------------------------------- /crownet/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/.gitignore -------------------------------------------------------------------------------- /crownet/tests/fingerprint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/fingerprint/README.md -------------------------------------------------------------------------------- /crownet/tests/fingerprint/control.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/fingerprint/control.yml -------------------------------------------------------------------------------- /crownet/tests/fingerprint/crownet.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/fingerprint/crownet.csv -------------------------------------------------------------------------------- /crownet/tests/fingerprint/crownet_fingerprinttest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/fingerprint/crownet_fingerprinttest -------------------------------------------------------------------------------- /crownet/tests/fingerprint/fingerprints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/fingerprint/fingerprints -------------------------------------------------------------------------------- /crownet/tests/fingerprint/fingerprints_crownet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/fingerprint/fingerprints_crownet -------------------------------------------------------------------------------- /crownet/tests/fingerprint/guiding_crowds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/fingerprint/guiding_crowds.yml -------------------------------------------------------------------------------- /crownet/tests/fingerprint/guiding_real_topo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/fingerprint/guiding_real_topo.yml -------------------------------------------------------------------------------- /crownet/tests/fingerprint/hash.d/control/control001_aid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/fingerprint/hash.d/control/control001_aid.csv -------------------------------------------------------------------------------- /crownet/tests/fingerprint/hash.d/control/control001_udp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/fingerprint/hash.d/control/control001_udp.csv -------------------------------------------------------------------------------- /crownet/tests/fingerprint/hash.d/guiding_crowds/test_4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/fingerprint/hash.d/guiding_crowds/test_4.csv -------------------------------------------------------------------------------- /crownet/tests/fingerprint/hash.d/guiding_crowds/test_5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/fingerprint/hash.d/guiding_crowds/test_5.csv -------------------------------------------------------------------------------- /crownet/tests/fingerprint/openair.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/fingerprint/openair.csv -------------------------------------------------------------------------------- /crownet/tests/fingerprint/simple_detour.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/fingerprint/simple_detour.yml -------------------------------------------------------------------------------- /crownet/tests/fingerprint/test-branch-x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/fingerprint/test-branch-x -------------------------------------------------------------------------------- /crownet/tests/gtest/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crownet/tests/gtest/src/crownet/aid/algorithms/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crownet/tests/gtest/src/crownet/applications/BeaconTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/gtest/src/crownet/applications/BeaconTest.cc -------------------------------------------------------------------------------- /crownet/tests/gtest/src/crownet/common/BurstIdSetTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/gtest/src/crownet/common/BurstIdSetTest.cc -------------------------------------------------------------------------------- /crownet/tests/gtest/src/crownet/common/IEntryTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/gtest/src/crownet/common/IEntryTest.cc -------------------------------------------------------------------------------- /crownet/tests/gtest/src/crownet/crownet_testutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/gtest/src/crownet/crownet_testutil.cc -------------------------------------------------------------------------------- /crownet/tests/gtest/src/crownet/crownet_testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/gtest/src/crownet/crownet_testutil.h -------------------------------------------------------------------------------- /crownet/tests/gtest/src/crownet/dcd/DcDMapFileWriterTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/gtest/src/crownet/dcd/DcDMapFileWriterTest.cc -------------------------------------------------------------------------------- /crownet/tests/gtest/src/crownet/dcd/DcDMapIteratorTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/gtest/src/crownet/dcd/DcDMapIteratorTest.cc -------------------------------------------------------------------------------- /crownet/tests/gtest/src/crownet/dcd/DcDMapTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/gtest/src/crownet/dcd/DcDMapTest.cc -------------------------------------------------------------------------------- /crownet/tests/gtest/src/crownet/dcd/DpmmResourceSharing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/gtest/src/crownet/dcd/DpmmResourceSharing.cc -------------------------------------------------------------------------------- /crownet/tests/gtest/src/crownet/dcd/GridCellIDKeyProvider.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/gtest/src/crownet/dcd/GridCellIDKeyProvider.cc -------------------------------------------------------------------------------- /crownet/tests/gtest/src/crownet/dcd/IdentifierTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/gtest/src/crownet/dcd/IdentifierTest.cc -------------------------------------------------------------------------------- /crownet/tests/gtest/src/crownet/dcd/RegularGridInfoTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/gtest/src/crownet/dcd/RegularGridInfoTest.cc -------------------------------------------------------------------------------- /crownet/tests/gtest/src/crownet/dcd/cell/CellTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/gtest/src/crownet/dcd/cell/CellTest.cc -------------------------------------------------------------------------------- /crownet/tests/gtest/src/crownet/dcd/cell/RegularCellTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/gtest/src/crownet/dcd/cell/RegularCellTest.cc -------------------------------------------------------------------------------- /crownet/tests/gtest/src/crownet/dcd/rank_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/gtest/src/crownet/dcd/rank_plot.py -------------------------------------------------------------------------------- /crownet/tests/gtest/src/crownet/mobility/BonnMotionTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/gtest/src/crownet/mobility/BonnMotionTest.cc -------------------------------------------------------------------------------- /crownet/tests/gtest/src/crownet/mobility/bmFile1.bonnMotion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/gtest/src/crownet/mobility/bmFile1.bonnMotion -------------------------------------------------------------------------------- /crownet/tests/gtest/src/crownet/mobility/bmFile2.bonnMotion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/gtest/src/crownet/mobility/bmFile2.bonnMotion -------------------------------------------------------------------------------- /crownet/tests/gtest/src/main_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/gtest/src/main_test.cc -------------------------------------------------------------------------------- /crownet/tests/gtest/src/main_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/gtest/src/main_test.h -------------------------------------------------------------------------------- /crownet/tests/gtest/src/makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/gtest/src/makefrag -------------------------------------------------------------------------------- /crownet/tests/omnetpp/DcDMap.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/omnetpp/DcDMap.test -------------------------------------------------------------------------------- /crownet/tests/omnetpp/DcDMap_dynamicInterval.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/omnetpp/DcDMap_dynamicInterval.test -------------------------------------------------------------------------------- /crownet/tests/omnetpp/DcDMap_localUpdate.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/omnetpp/DcDMap_localUpdate.test -------------------------------------------------------------------------------- /crownet/tests/omnetpp/DcDMap_noData.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/omnetpp/DcDMap_noData.test -------------------------------------------------------------------------------- /crownet/tests/omnetpp/DcDMap_withData.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/omnetpp/DcDMap_withData.test -------------------------------------------------------------------------------- /crownet/tests/omnetpp/Dpmm_FullNeighborhoodCount.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/omnetpp/Dpmm_FullNeighborhoodCount.test -------------------------------------------------------------------------------- /crownet/tests/omnetpp/Dpmm_RsdNeighborhoodCount.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/omnetpp/Dpmm_RsdNeighborhoodCount.test -------------------------------------------------------------------------------- /crownet/tests/omnetpp/MultiBeaconTest.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/omnetpp/MultiBeaconTest.test -------------------------------------------------------------------------------- /crownet/tests/omnetpp/NeighborhoodTable_handleMessage.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/omnetpp/NeighborhoodTable_handleMessage.test -------------------------------------------------------------------------------- /crownet/tests/omnetpp/NeighborhoodTable_initialize.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/omnetpp/NeighborhoodTable_initialize.test -------------------------------------------------------------------------------- /crownet/tests/omnetpp/NeighborhoodTable_initialize2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/omnetpp/NeighborhoodTable_initialize2.test -------------------------------------------------------------------------------- /crownet/tests/omnetpp/StopApplication.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/omnetpp/StopApplication.test -------------------------------------------------------------------------------- /crownet/tests/omnetpp/gentest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/omnetpp/gentest -------------------------------------------------------------------------------- /crownet/tests/omnetpp/lib/NeighborhoodTableTest.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/omnetpp/lib/NeighborhoodTableTest.ned -------------------------------------------------------------------------------- /crownet/tests/omnetpp/lib/NeighborhoodTableTestApp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/omnetpp/lib/NeighborhoodTableTestApp.cc -------------------------------------------------------------------------------- /crownet/tests/omnetpp/lib/TestStationaryWorld.ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/omnetpp/lib/TestStationaryWorld.ned -------------------------------------------------------------------------------- /crownet/tests/omnetpp/lib/dcdMap_localUpdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/omnetpp/lib/dcdMap_localUpdate.py -------------------------------------------------------------------------------- /crownet/tests/omnetpp/lib/dcdTest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/omnetpp/lib/dcdTest.ipynb -------------------------------------------------------------------------------- /crownet/tests/omnetpp/lib/default_testConfig.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/omnetpp/lib/default_testConfig.ini -------------------------------------------------------------------------------- /crownet/tests/omnetpp/lib/ip4Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/omnetpp/lib/ip4Config.xml -------------------------------------------------------------------------------- /crownet/tests/omnetpp/lib/package.ned: -------------------------------------------------------------------------------- 1 | package crownet.test.omnetpp.lib; -------------------------------------------------------------------------------- /crownet/tests/omnetpp/lib/run_with_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/omnetpp/lib/run_with_venv.sh -------------------------------------------------------------------------------- /crownet/tests/omnetpp/lib/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/omnetpp/lib/services.xml -------------------------------------------------------------------------------- /crownet/tests/omnetpp/runtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/crownet/tests/omnetpp/runtest -------------------------------------------------------------------------------- /doc/Installation/BuildOfIndividualSubModules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/Installation/BuildOfIndividualSubModules.md -------------------------------------------------------------------------------- /doc/Installation/CodingStyle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/Installation/CodingStyle.md -------------------------------------------------------------------------------- /doc/Installation/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/Installation/Installation.md -------------------------------------------------------------------------------- /doc/Installation/Recommendations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/Installation/Recommendations.md -------------------------------------------------------------------------------- /doc/Parameterstudies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/Parameterstudies/README.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/Running-a-Simulation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/Running-a-Simulation/README.md -------------------------------------------------------------------------------- /doc/Running-a-Simulation/StartUp-GUI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/Running-a-Simulation/StartUp-GUI.md -------------------------------------------------------------------------------- /doc/Running-a-Simulation/StartUp-RunScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/Running-a-Simulation/StartUp-RunScript.md -------------------------------------------------------------------------------- /doc/Running-a-Simulation/StartUp-Terminal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/Running-a-Simulation/StartUp-Terminal.md -------------------------------------------------------------------------------- /doc/Simulation-configuration/Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/Simulation-configuration/Configuration.md -------------------------------------------------------------------------------- /doc/Submodules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/Submodules/README.md -------------------------------------------------------------------------------- /doc/Submodules/inet_patches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/Submodules/inet_patches/README.md -------------------------------------------------------------------------------- /doc/Submodules/omnetpp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/Submodules/omnetpp.md -------------------------------------------------------------------------------- /doc/Testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/Testing/README.md -------------------------------------------------------------------------------- /doc/Testing/gtest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/Testing/gtest.md -------------------------------------------------------------------------------- /doc/Testing/opp_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/Testing/opp_test.md -------------------------------------------------------------------------------- /doc/archive/SimulationVM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/archive/SimulationVM.md -------------------------------------------------------------------------------- /doc/archive/layer_application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/archive/layer_application.md -------------------------------------------------------------------------------- /doc/archive/mac_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/archive/mac_setup.md -------------------------------------------------------------------------------- /doc/archive/protocol_stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/archive/protocol_stack.md -------------------------------------------------------------------------------- /doc/archive/service_aid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/archive/service_aid.md -------------------------------------------------------------------------------- /doc/features/AccuratePedestrianMobility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/features/AccuratePedestrianMobility.md -------------------------------------------------------------------------------- /doc/features/DensityMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/features/DensityMap.md -------------------------------------------------------------------------------- /doc/features/Interactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/features/Interactions.md -------------------------------------------------------------------------------- /doc/features/RouteRecommendation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/features/RouteRecommendation.md -------------------------------------------------------------------------------- /doc/img/Accuracy_of_models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/Accuracy_of_models.png -------------------------------------------------------------------------------- /doc/img/ImageProduction/Accuracy_of_models.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/ImageProduction/Accuracy_of_models.odp -------------------------------------------------------------------------------- /doc/img/ImageProduction/Accuracy_of_models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/ImageProduction/Accuracy_of_models.png -------------------------------------------------------------------------------- /doc/img/ImageProduction/Interaction_overview.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/ImageProduction/Interaction_overview.odp -------------------------------------------------------------------------------- /doc/img/ImageProduction/Interaction_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/ImageProduction/Interaction_overview.png -------------------------------------------------------------------------------- /doc/img/ImageProduction/Interaction_overview_v2.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/ImageProduction/Interaction_overview_v2.odp -------------------------------------------------------------------------------- /doc/img/ImageProduction/Interaction_overview_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/ImageProduction/Interaction_overview_v2.png -------------------------------------------------------------------------------- /doc/img/Interaction_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/Interaction_overview.png -------------------------------------------------------------------------------- /doc/img/Interaction_overview_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/Interaction_overview_v2.png -------------------------------------------------------------------------------- /doc/img/aid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/aid.png -------------------------------------------------------------------------------- /doc/img/congestion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/congestion.png -------------------------------------------------------------------------------- /doc/img/crownet_sketch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/crownet_sketch.pdf -------------------------------------------------------------------------------- /doc/img/crownet_sketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/crownet_sketch.png -------------------------------------------------------------------------------- /doc/img/density_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/density_map.png -------------------------------------------------------------------------------- /doc/img/density_map_processoverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/density_map_processoverview.png -------------------------------------------------------------------------------- /doc/img/detailed_vadere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/detailed_vadere.png -------------------------------------------------------------------------------- /doc/img/discretized_topography.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/discretized_topography.png -------------------------------------------------------------------------------- /doc/img/guiding_strategy_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/guiding_strategy_1.png -------------------------------------------------------------------------------- /doc/img/guiding_strategy_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/guiding_strategy_2.png -------------------------------------------------------------------------------- /doc/img/interactions_strong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/interactions_strong.png -------------------------------------------------------------------------------- /doc/img/models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/models.png -------------------------------------------------------------------------------- /doc/img/opp_test_debug_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/opp_test_debug_config.png -------------------------------------------------------------------------------- /doc/img/rerouted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/rerouted.png -------------------------------------------------------------------------------- /doc/img/route_recommendation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/route_recommendation.png -------------------------------------------------------------------------------- /doc/img/simulation_tutorial/omnet_first_look.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/simulation_tutorial/omnet_first_look.png -------------------------------------------------------------------------------- /doc/img/simulation_tutorial/python_interpreter_pycharm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/simulation_tutorial/python_interpreter_pycharm.png -------------------------------------------------------------------------------- /doc/img/simulation_tutorial/run_simulation_ide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/simulation_tutorial/run_simulation_ide.png -------------------------------------------------------------------------------- /doc/img/simulation_tutorial/select_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/simulation_tutorial/select_configuration.png -------------------------------------------------------------------------------- /doc/img/simulation_tutorial/simulation_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/simulation_tutorial/simulation_view.png -------------------------------------------------------------------------------- /doc/img/xquartz_security_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/doc/img/xquartz_security_settings.png -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/crownet-base-cpp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/crownet-base-cpp/Dockerfile -------------------------------------------------------------------------------- /docker/crownet-base-java/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/crownet-base-java/Dockerfile -------------------------------------------------------------------------------- /docker/crownet-base-min/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/crownet-base-min/Dockerfile -------------------------------------------------------------------------------- /docker/flowcontrol-ide/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/flowcontrol-ide/Dockerfile -------------------------------------------------------------------------------- /docker/flowcontrol-ide/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/flowcontrol-ide/init.sh -------------------------------------------------------------------------------- /docker/flowcontrol-ide/waitfor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/flowcontrol-ide/waitfor.sh -------------------------------------------------------------------------------- /docker/flowcontrol/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/flowcontrol/Dockerfile -------------------------------------------------------------------------------- /docker/flowcontrol/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/flowcontrol/init.sh -------------------------------------------------------------------------------- /docker/flowcontrol/init_dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/flowcontrol/init_dev.sh -------------------------------------------------------------------------------- /docker/omnetpp-ide/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/omnetpp-ide/Dockerfile -------------------------------------------------------------------------------- /docker/omnetpp-ide/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/omnetpp-ide/init.sh -------------------------------------------------------------------------------- /docker/omnetpp-ide/waitfor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/omnetpp-ide/waitfor.sh -------------------------------------------------------------------------------- /docker/omnetpp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/omnetpp/Dockerfile -------------------------------------------------------------------------------- /docker/omnetpp/configure.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/omnetpp/configure.user -------------------------------------------------------------------------------- /docker/omnetpp/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/omnetpp/init.sh -------------------------------------------------------------------------------- /docker/omnetpp/waitfor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/omnetpp/waitfor.sh -------------------------------------------------------------------------------- /docker/sumo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/sumo/Dockerfile -------------------------------------------------------------------------------- /docker/sumo/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/sumo/init.sh -------------------------------------------------------------------------------- /docker/sumo/veins_launchd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/sumo/veins_launchd -------------------------------------------------------------------------------- /docker/vadere-ide/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/vadere-ide/Dockerfile -------------------------------------------------------------------------------- /docker/vadere-ide/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/vadere-ide/init.sh -------------------------------------------------------------------------------- /docker/vadere-ide/waitfor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/vadere-ide/waitfor.sh -------------------------------------------------------------------------------- /docker/vadere/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/vadere/Dockerfile -------------------------------------------------------------------------------- /docker/vadere/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/vadere/init.sh -------------------------------------------------------------------------------- /docker/vadere/vadere-gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/docker/vadere/vadere-gui -------------------------------------------------------------------------------- /scripts/build_all_images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/build_all_images -------------------------------------------------------------------------------- /scripts/build_and_push_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/build_and_push_image -------------------------------------------------------------------------------- /scripts/check_container_available: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/check_container_available -------------------------------------------------------------------------------- /scripts/configure_git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/configure_git.sh -------------------------------------------------------------------------------- /scripts/crownet_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/crownet_info -------------------------------------------------------------------------------- /scripts/dockerX11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/dockerX11.sh -------------------------------------------------------------------------------- /scripts/flowcontrol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/flowcontrol -------------------------------------------------------------------------------- /scripts/flowcontrol-ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/flowcontrol-ide -------------------------------------------------------------------------------- /scripts/get_images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/get_images -------------------------------------------------------------------------------- /scripts/git-format/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/git-format/COPYING -------------------------------------------------------------------------------- /scripts/git-format/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/git-format/README.md -------------------------------------------------------------------------------- /scripts/git-format/apply-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/git-format/apply-format -------------------------------------------------------------------------------- /scripts/git-format/git-pre-commit-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/git-format/git-pre-commit-format -------------------------------------------------------------------------------- /scripts/install_pip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/install_pip.sh -------------------------------------------------------------------------------- /scripts/install_wiki.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/install_wiki.sh -------------------------------------------------------------------------------- /scripts/jetbrains/External Tools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/jetbrains/External Tools.xml -------------------------------------------------------------------------------- /scripts/jetbrains/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/jetbrains/README -------------------------------------------------------------------------------- /scripts/jetbrains/watchers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/jetbrains/watchers.xml -------------------------------------------------------------------------------- /scripts/lib/lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/lib/lib.sh -------------------------------------------------------------------------------- /scripts/lib/python/rover_utils/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | dist/ 3 | venv 4 | .idea 5 | 6 | -------------------------------------------------------------------------------- /scripts/lib/python/rover_utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/lib/python/rover_utils/README.md -------------------------------------------------------------------------------- /scripts/lib/python/rover_utils/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/lib/python/rover_utils/requirements.txt -------------------------------------------------------------------------------- /scripts/lib/python/rover_utils/rover_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/lib/python/rover_utils/rover_utils/__init__.py -------------------------------------------------------------------------------- /scripts/lib/python/rover_utils/rover_utils/docker_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/lib/python/rover_utils/rover_utils/gui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/lib/python/rover_utils/rover_utils/gui/gui_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/lib/python/rover_utils/rover_utils/gui/gui_common.py -------------------------------------------------------------------------------- /scripts/lib/python/rover_utils/rover_utils/gui/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/lib/python/rover_utils/rover_utils/gui/widgets.py -------------------------------------------------------------------------------- /scripts/lib/python/rover_utils/rover_utils/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/lib/python/rover_utils/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/lib/python/rover_utils/setup.py -------------------------------------------------------------------------------- /scripts/nedpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/nedpath -------------------------------------------------------------------------------- /scripts/omnetpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/omnetpp -------------------------------------------------------------------------------- /scripts/omnetpp-ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/omnetpp-ide -------------------------------------------------------------------------------- /scripts/omnetpp-inet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/omnetpp-inet -------------------------------------------------------------------------------- /scripts/omnetpp_rnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/omnetpp_rnd -------------------------------------------------------------------------------- /scripts/opp_docker_shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/opp_docker_shell -------------------------------------------------------------------------------- /scripts/print_container_registry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/print_container_registry -------------------------------------------------------------------------------- /scripts/print_container_versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/print_container_versions -------------------------------------------------------------------------------- /scripts/print_environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/print_environment -------------------------------------------------------------------------------- /scripts/pull_and_push_images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/pull_and_push_images -------------------------------------------------------------------------------- /scripts/pull_images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/pull_images -------------------------------------------------------------------------------- /scripts/push_images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/push_images -------------------------------------------------------------------------------- /scripts/rnd_stationary_positions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/rnd_stationary_positions -------------------------------------------------------------------------------- /scripts/ropp_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/ropp_run -------------------------------------------------------------------------------- /scripts/ropp_runall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/ropp_runall -------------------------------------------------------------------------------- /scripts/run_simulations_Diss_Mayr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/run_simulations_Diss_Mayr -------------------------------------------------------------------------------- /scripts/sumo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/sumo -------------------------------------------------------------------------------- /scripts/sumo-gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/sumo-gui -------------------------------------------------------------------------------- /scripts/sumo-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/sumo-server -------------------------------------------------------------------------------- /scripts/vadere: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/vadere -------------------------------------------------------------------------------- /scripts/vadere-gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/vadere-gui -------------------------------------------------------------------------------- /scripts/vadere-ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/vadere-ide -------------------------------------------------------------------------------- /scripts/vadere-postvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/vadere-postvis -------------------------------------------------------------------------------- /scripts/vadere-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/vadere-server -------------------------------------------------------------------------------- /scripts/write_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/scripts/write_config.sh -------------------------------------------------------------------------------- /setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roVer-HM/crownet/HEAD/setup --------------------------------------------------------------------------------