implementing digraph generation

This commit is contained in:
elvis
2025-07-05 14:54:43 +02:00
parent 62740cce84
commit ad1ef6f6a6
7 changed files with 99 additions and 7 deletions

View File

@ -141,7 +141,7 @@ fn print_process(
use super::structure::RSprocess::*;
match process {
Nill => {
write!(f, "[Nill]")
write!(f, "Nill")
}
RecursiveIdentifier { identifier } => {
write!(f,
@ -154,7 +154,7 @@ fn print_process(
} => {
write!(
f,
"[entities: {}, next_process: {}]",
"{}.{}",
RSsetDisplay::from(translator, entities),
RSprocessDisplay::from(translator, next_process)
)
@ -166,7 +166,7 @@ fn print_process(
} => {
write!(
f,
"[repeat: {repeat}, repeated_process: {}, next_process: {}]",
"({})^{repeat}.{}",
RSprocessDisplay::from(translator, repeated_process),
RSprocessDisplay::from(translator, next_process)
)