graph_simulation/
lib.rs

1
2pub mod algorithm;
3pub mod utils;
4
5pub fn add(left: u64, right: u64) -> u64 {
6    left + right
7}
8
9use crate::algorithm::simulation::Simulation;
10
11// #[cfg(test)]
12// mod tests {
13//     use super::*;
14
15//     #[test]
16//     fn it_works() {
17//         let graph = graph::labeled_graph::StandardLabeledGraph::new();
18//         // let sim = graph.get_simulation();
19//     }
20    
21// }