@tscircuit/capacity-autorouter 0.0.432 → 0.0.434
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 +7 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4536,6 +4536,13 @@ type MultiTargetNecessaryCrampedPortPointSolverInput = {
|
|
|
4536
4536
|
sharedEdgeSegments: SharedEdgeSegment[];
|
|
4537
4537
|
capacityMeshNodes: CapacityMeshNode[];
|
|
4538
4538
|
simpleRouteJson: SimpleRouteJson;
|
|
4539
|
+
/**
|
|
4540
|
+
* The number of cramped port points to keep.
|
|
4541
|
+
* This is useful when there are multiple connections.
|
|
4542
|
+
* Setting this to more than one (e.g., 2) ensures that at least two connections can be routed.
|
|
4543
|
+
* Higher values may be beneficial, but can lead to more DRC errors.
|
|
4544
|
+
*/
|
|
4545
|
+
numberOfCrampedPortPointsToKeep: number;
|
|
4539
4546
|
};
|
|
4540
4547
|
/**
|
|
4541
4548
|
* This solver filters out cramped port points that are not necessary.
|