clippy --fix && fmt

This commit is contained in:
Henry Schimke
2023-03-06 11:37:37 -06:00
parent fe8f89cd29
commit bef21af81e
6 changed files with 269 additions and 299 deletions

View File

@@ -225,9 +225,9 @@ impl<'a> EdgeTracer<'_> {
return Ok(StepResult::Found);
}
pEdge = pEdge - dEdge;
pEdge -= dEdge;
if self.blackAt(pEdge - self.d) {
pEdge = pEdge - self.d;
pEdge -= self.d;
}
// dbg!(pEdge);