Fixed a tricky type erasure bug in the scheduler

This commit is contained in:
2023-10-12 14:36:59 +01:00
parent af3e9f67fa
commit cb395da894
32 changed files with 147 additions and 125 deletions

View File

@@ -51,8 +51,9 @@ impl Display for RuleError {
Self::Multiple(key) => {
write!(f, "Key {key} appears multiple times in match pattern")
},
Self::VecNeighbors(left, right) =>
write!(f, "vectorials {left} and {right} are next to each other"),
Self::VecNeighbors(left, right) => {
write!(f, "vectorials {left} and {right} are next to each other")
},
}
}
}