Skip to content

Commit

Permalink
Relax assertion
Browse files Browse the repository at this point in the history
Signed-off-by: Eddie Hung <[email protected]>
  • Loading branch information
eddieh-xlnx committed Dec 5, 2024
1 parent 8ea2765 commit 3e5527a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/com/xilinx/rapidwright/design/DesignTools.java
Original file line number Diff line number Diff line change
Expand Up @@ -3331,8 +3331,9 @@ public static void createA1A6ToStaticNets(Design design) {

spi = si.getSitePinInst(belName.charAt(0) + "6");
if (spi != null) {
// [A-H]6 input already has this static net
assert(a6Net == staticNet);
// [A-H]6 input already a static net
assert(spi.getNet() == a6Net);
assert(a6Net.isStaticNet());
continue;
}
} else {
Expand Down

0 comments on commit 3e5527a

Please sign in to comment.