Refactoring

This commit is contained in:
elvis
2025-07-11 19:36:20 +02:00
parent 5bddb01883
commit b22c7de319
10 changed files with 525 additions and 469 deletions

View File

@ -1,8 +1,8 @@
fn main() -> std::io::Result<()> {
fn main() {
// let now = std::time::Instant::now();
// println!("{}", now.elapsed().as_micros());
reactionsystems::examples::graphml()?;
let (g, t) = reactionsystems::rsprocess::presets::digraph("testing/first.system".into()).unwrap();
Ok(())
reactionsystems::rsprocess::presets::dot(&g, &t, "testing/first.dot".into()).unwrap();
}