modifiing grammar for instructions in file

This commit is contained in:
elvis
2025-07-11 23:49:59 +02:00
parent a7b01cb221
commit eeb4743e57
4 changed files with 262 additions and 95 deletions

View File

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