Skip to content

Commit

Permalink
Fix bug with blocking for net (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanku authored Oct 24, 2024
1 parent 1b5af4e commit f99b96e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion substrate/src/layout/routing/auto/abs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ impl GreedyAbstractRouter {
return;
}
State::Blocked { net: other } => {
if net != *other {
if net == *other {
State::Blocked { net }
} else {
State::Blocked { net: None }
Expand Down

0 comments on commit f99b96e

Please sign in to comment.