@tscircuit/capacity-autorouter 0.0.814 → 0.0.816

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.d.ts CHANGED
@@ -4787,13 +4787,6 @@ type MultiTargetNecessaryCrampedPortPointSolverInput = {
4787
4787
  sharedEdgeSegments: SharedEdgeSegment[];
4788
4788
  capacityMeshNodes: CapacityMeshNode[];
4789
4789
  simpleRouteJson: SimpleRouteJson;
4790
- /**
4791
- * The number of cramped port points to keep.
4792
- * This is useful when there are multiple connections.
4793
- * Setting this to more than one (e.g., 2) ensures that at least two connections can be routed.
4794
- * Higher values may be beneficial, but can lead to more DRC errors.
4795
- */
4796
- numberOfCrampedPortPointsToKeep: number;
4797
4790
  };
4798
4791
  /**
4799
4792
  * This solver filters out cramped port points that are not necessary.
@@ -4819,6 +4812,8 @@ declare class MultiTargetNecessaryCrampedPortPointSolver extends BaseSolver$1 {
4819
4812
  _setup(): void;
4820
4813
  _step(): void;
4821
4814
  getOutput(): SharedEdgeSegment[];
4815
+ private getCandidateExitCapacity;
4816
+ private keepCandidatePath;
4822
4817
  private isMultilayerEscapePort;
4823
4818
  visualize(): GraphicsObject;
4824
4819
  }