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