Skip to content

Commit

Permalink
Revert "ReportRouteStatusResult to parse resource conflicts"
Browse files Browse the repository at this point in the history
This reverts commit 0580bd5.
  • Loading branch information
eddieh-xlnx committed Oct 26, 2023
1 parent b565bc8 commit bde816d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/com/xilinx/rapidwright/util/ReportRouteStatusResult.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ public class ReportRouteStatusResult {
public final int netsWithRoutingErrors;
public final int netsWithSomeUnplacedPins;
public final int netsWithSomeUnroutedPins;
public final int netsWithResourceConflicts;

private static int parseLog(List<String> log, String key) {
List<String> matchingLines = VivadoTools.searchVivadoLog(log, key);
Expand Down Expand Up @@ -70,7 +69,6 @@ public ReportRouteStatusResult(List<String> log) {
netsWithRoutingErrors = parseLog(log, "# of nets with routing errors");
netsWithSomeUnplacedPins = parseLog(log, "# of nets with some unplaced pins");
netsWithSomeUnroutedPins = parseLog(log, "# of nets with some unrouted pins");
netsWithResourceConflicts = parseLog(log, "# of nets with resource conflicts");
}

public boolean isFullyRouted() {
Expand Down

0 comments on commit bde816d

Please sign in to comment.