Skip to content
Discussion options

You must be logged in to vote

The problem is likely due to counting dual-output SitePinInst that are present on the net but not necessarily needed to be fully routed. For example:

There might be two source (OUTPUT) SitePinInst on this net, D_O and DMUX. However, the router only chose to use DMUX to provide all the connectivity for the net. You can avoid counting this situation by ensuring that you are only looking at all the sink (INPUT) pins to be routed:

...
            for(SitePinInst p : n.getPins()) {
                if(!p.isOutPin() && !p.isRouted()) {
                    notFullyRoutedNetCount++;

...

Replies: 1 comment 4 replies

Comment options

You must be logged in to vote
4 replies
@coherent17
Comment options

@coherent17
Comment options

@clavin-xlnx
Comment options

@coherent17
Comment options

Answer selected by coherent17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants