Skip to content

Commit

Permalink
Fix polarity
Browse files Browse the repository at this point in the history
Signed-off-by: Eddie Hung <[email protected]>
  • Loading branch information
eddieh-xlnx committed Jan 8, 2024
1 parent c5da539 commit 81c3da8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ private Map<String, PIP> getPIPMap(Net net) {
public int compareNets(Net gold, Net test) {
int init = getDiffCount();

if (comparePIPs.test(gold) || comparePIPs.test(test)) {
if (!comparePIPs.test(gold) && !comparePIPs.test(test)) {
return getDiffCount() - init;
}

Expand Down

0 comments on commit 81c3da8

Please sign in to comment.