micro_traffic_sim_core 0.1.9

Core library for microscopic traffic simulation via cellular automata.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Export library
pub mod behaviour;
pub mod maneuver;
pub mod agents_types;
pub mod agents;
pub mod conflict_zones;
pub mod geom;
pub mod grid;
pub mod intentions;
pub mod conflicts;
pub mod movement;
pub mod shortest_path;
pub mod simulation;
pub mod traffic_lights;
pub mod trips;
pub mod utils;
pub mod verbose;