@tscircuit/capacity-autorouter 0.0.70 → 0.0.71

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -7514,6 +7514,12 @@ var MultiHeadPolyLineIntraNodeSolver = class extends BaseSolver {
7514
7514
  const path1SegmentsByLayer = polyLineSegmentsByLayer[i];
7515
7515
  const path1Vias = polyLineVias[i];
7516
7516
  for (let j = i + 1; j < polyLines.length; j++) {
7517
+ if (this.connMap?.areIdsConnected(
7518
+ polyLines[i].connectionName,
7519
+ polyLines[j].connectionName
7520
+ )) {
7521
+ continue;
7522
+ }
7517
7523
  const path2SegmentsByLayer = polyLineSegmentsByLayer[j];
7518
7524
  const path2Vias = polyLineVias[j];
7519
7525
  let minGap = 1;