@tscircuit/capacity-autorouter 0.0.517 → 0.0.519
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 +3 -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
|
@@ -958,6 +958,8 @@ declare class CapacityMeshEdgeSolver extends BaseSolver {
|
|
|
958
958
|
_step(): void;
|
|
959
959
|
handleTargetNodes(): void;
|
|
960
960
|
doNodesHaveSharedLayer(node1: CapacityMeshNode, node2: CapacityMeshNode): boolean;
|
|
961
|
+
hasEdgeBetween(node1: CapacityMeshNode, node2: CapacityMeshNode): boolean;
|
|
962
|
+
doNodesTouchOrOverlap(node1: CapacityMeshNode, node2: CapacityMeshNode): boolean;
|
|
961
963
|
visualize(): GraphicsObject;
|
|
962
964
|
}
|
|
963
965
|
|
|
@@ -4974,6 +4976,7 @@ declare class MultipleHighDensityRouteStitchSolver3 extends BaseSolver {
|
|
|
4974
4976
|
defaultViaDiameter: number;
|
|
4975
4977
|
private endpointIndex;
|
|
4976
4978
|
private canStitchBetweenTerminals;
|
|
4979
|
+
private getSharedRootPathRoutes;
|
|
4977
4980
|
constructor(params: {
|
|
4978
4981
|
connections: SimpleRouteConnection[];
|
|
4979
4982
|
hdRoutes: HighDensityIntraNodeRoute$1[];
|