Revert "fix(router/ng/eval): Flip alignment of outer edges"

This reverts commit e3790eb366.
This commit is contained in:
Ellen Emilia Anna Zscheile 2025-06-30 15:51:25 +02:00
parent 185c2972b7
commit 5cc1747885
1 changed files with 2 additions and 2 deletions

View File

@ -191,8 +191,8 @@ impl AstarContext {
}
alignment
}
(Some(_), None) => Alignment::Right,
(None, Some(_)) => Alignment::Left,
(Some(_), None) => Alignment::Left,
(None, Some(_)) => Alignment::Right,
// this should only happen when one end-point is primal, handled above
(None, None) => unreachable!(),
};