Skip to content

Commit

Permalink
Fix inversion of input coming from Tie0
Browse files Browse the repository at this point in the history
  • Loading branch information
danilovesky committed Nov 12, 2024
1 parent d85c562 commit 5482bba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ private static BooleanFormula convertInputPins(VisualCircuit circuit, VisualFunc
trivialDriverComponent.setIsZeroDelay(true);
} else if (trivialDriverComponent.isTie1()) {
convertTie1ToTie0(circuit, trivialDriverComponent);
} else if (trivialDriverComponent.isTie1()) {
} else if (trivialDriverComponent.isTie0()) {
convertTie0ToTie1(circuit, trivialDriverComponent);
}
}
Expand Down

0 comments on commit 5482bba

Please sign in to comment.