@tscircuit/capacity-autorouter 0.0.759 → 0.0.760
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 +5 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -192,6 +192,8 @@ interface SimpleRouteConnection {
|
|
|
192
192
|
interface SimplifiedPcbTrace {
|
|
193
193
|
type: "pcb_trace";
|
|
194
194
|
pcb_trace_id: TraceId;
|
|
195
|
+
/** Preloaded trace intentionally replaced by this routed output. */
|
|
196
|
+
__replaces_pcb_trace_id?: TraceId;
|
|
195
197
|
connection_name: string;
|
|
196
198
|
connectsTo?: Array<TraceId | NetId | PointId>;
|
|
197
199
|
route: Array<{
|
|
@@ -2184,7 +2186,8 @@ declare class NetToPointPairsSolver extends BaseSolver {
|
|
|
2184
2186
|
getSolverName(): string;
|
|
2185
2187
|
unprocessedConnections: Array<SimpleRouteConnection>;
|
|
2186
2188
|
newConnections: Array<SimpleRouteConnection>;
|
|
2187
|
-
|
|
2189
|
+
readonly initiallyConnectedMap: ConnectivityMap;
|
|
2190
|
+
constructor(ogSrj: SimpleRouteJson, colorMap: Record<string, string> | undefined, initiallyConnectedMap: ConnectivityMap);
|
|
2188
2191
|
_step(): void;
|
|
2189
2192
|
getNewSimpleRouteJson(): SimpleRouteJson;
|
|
2190
2193
|
visualize(): GraphicsObject;
|
|
@@ -2238,7 +2241,7 @@ declare class NetToPointPairsSolver2_OffBoardConnection extends NetToPointPairsS
|
|
|
2238
2241
|
getSolverName(): string;
|
|
2239
2242
|
connectionPointDsu: DSU;
|
|
2240
2243
|
connectionPointMap: Map<string, ConnectionPoint$1>;
|
|
2241
|
-
constructor(ogSrj: SimpleRouteJson, colorMap
|
|
2244
|
+
constructor(ogSrj: SimpleRouteJson, colorMap: Record<string, string> | undefined, initiallyConnectedMap: ConnectivityMap);
|
|
2242
2245
|
_findBestConnectionPointsFromDisjointSets(sourcePoint: ConnectionPoint$1, targetPoint: ConnectionPoint$1): {
|
|
2243
2246
|
pointsToConnect: [ConnectionPoint$1, ConnectionPoint$1];
|
|
2244
2247
|
};
|