Files
ReactionSystems/src/main.rs

11 lines
235 B
Rust
Raw Normal View History

fn main() -> std::io::Result<()> {
// let now = std::time::Instant::now();
// println!("{}", now.elapsed().as_micros());
reactionsystems::examples::digraph()?;
2025-07-05 14:54:43 +02:00
reactionsystems::examples::adversarial()?;
2025-07-08 01:03:50 +02:00
2025-05-14 11:42:19 +02:00
Ok(())
}