Files
ReactionSystems/src/main.rs

9 lines
304 B
Rust
Raw Normal View History

2025-07-11 19:36:20 +02:00
fn main() {
// let now = std::time::Instant::now();
// println!("{}", now.elapsed().as_micros());
2025-07-11 19:36:20 +02:00
let (g, t) = reactionsystems::rsprocess::presets::digraph("testing/first.system".into()).unwrap();
2025-07-08 01:03:50 +02:00
2025-07-11 19:36:20 +02:00
reactionsystems::rsprocess::presets::dot(&g, &t, "testing/first.dot".into()).unwrap();
2025-05-14 11:42:19 +02:00
}