@tscircuit/capacity-autorouter 0.0.546 → 0.0.547
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 +6 -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
|
@@ -1078,6 +1078,7 @@ declare class SingleRouteCandidatePriorityQueue<T extends Node = Node> {
|
|
|
1078
1078
|
|
|
1079
1079
|
type FutureConnection$1 = {
|
|
1080
1080
|
connectionName: string;
|
|
1081
|
+
rootConnectionName?: string;
|
|
1081
1082
|
points: {
|
|
1082
1083
|
x: number;
|
|
1083
1084
|
y: number;
|
|
@@ -1127,6 +1128,7 @@ declare class SingleHighDensityRouteSolver extends BaseSolver {
|
|
|
1127
1128
|
exploredNodes: Set<string>;
|
|
1128
1129
|
candidates: SingleRouteCandidatePriorityQueue;
|
|
1129
1130
|
connectionName: string;
|
|
1131
|
+
rootConnectionName?: string;
|
|
1130
1132
|
solvedPath: HighDensityIntraNodeRoute$1 | null;
|
|
1131
1133
|
futureConnections: FutureConnection$1[];
|
|
1132
1134
|
hyperParameters: Partial<HighDensityHyperParameters>;
|
|
@@ -1146,6 +1148,7 @@ declare class SingleHighDensityRouteSolver extends BaseSolver {
|
|
|
1146
1148
|
};
|
|
1147
1149
|
constructor(opts: {
|
|
1148
1150
|
connectionName: string;
|
|
1151
|
+
rootConnectionName?: string;
|
|
1149
1152
|
obstacleRoutes: HighDensityIntraNodeRoute$1[];
|
|
1150
1153
|
minDistBetweenEnteringPoints: number;
|
|
1151
1154
|
bounds: {
|
|
@@ -1225,6 +1228,7 @@ declare class IntraNodeRouteSolver extends BaseSolver {
|
|
|
1225
1228
|
colorMap: Record<string, string>;
|
|
1226
1229
|
unsolvedConnections: {
|
|
1227
1230
|
connectionName: string;
|
|
1231
|
+
rootConnectionName?: string;
|
|
1228
1232
|
points: {
|
|
1229
1233
|
x: number;
|
|
1230
1234
|
y: number;
|
|
@@ -1232,6 +1236,7 @@ declare class IntraNodeRouteSolver extends BaseSolver {
|
|
|
1232
1236
|
}[];
|
|
1233
1237
|
}[];
|
|
1234
1238
|
originalConnectionPointsByName: Map<string, ConnectionPoint[]>;
|
|
1239
|
+
rootConnectionNameByConnectionName: Map<string, string>;
|
|
1235
1240
|
totalConnections: number;
|
|
1236
1241
|
solvedRoutes: HighDensityIntraNodeRoute$1[];
|
|
1237
1242
|
failedSubSolvers: SingleHighDensityRouteSolver[];
|
|
@@ -6405,6 +6410,7 @@ declare const reconnectReroutedSimpleRouteJsonRegion: (originalSrj: SimpleRouteJ
|
|
|
6405
6410
|
|
|
6406
6411
|
type FutureConnection = {
|
|
6407
6412
|
connectionName: string;
|
|
6413
|
+
rootConnectionName?: string;
|
|
6408
6414
|
points: {
|
|
6409
6415
|
x: number;
|
|
6410
6416
|
y: number;
|