This repository has been archived on 2024-10-09. You can view files and clone it, but cannot push or open issues or pull requests.

13 lines
235 B
Rust
Raw Normal View History

2023-05-30 19:13:41 +02:00
pub mod graph;
2023-05-31 12:45:45 +02:00
pub fn main() {
tests("graph")
2023-05-30 19:13:41 +02:00
}
2023-05-31 12:45:45 +02:00
pub fn tests(arg: &str) {
match arg {
"graph" => graph::test(),
"matrix" => graph::matrix::test(),
&_ => println!("{arg} is not a valid option"),
}
}