Working formatting of weights for nodes and edges

This commit is contained in:
elvis
2025-07-12 15:32:21 +02:00
parent dcb1e63c35
commit 483260c2a3
5 changed files with 206 additions and 41 deletions

View File

@ -1,11 +1,12 @@
use reactionsystems::rsprocess::presets;
fn main() {
// let now = std::time::Instant::now();
// println!("{}", now.elapsed().as_micros());
let now = std::time::Instant::now();
match presets::run("testing/first.system".into()) {
Ok(_) => {},
Err(e) => {println!("{e}")}
}
println!("{} milliseconds elapsed", now.elapsed().as_millis());
}