@tscircuit/capacity-autorouter 0.0.750 → 0.0.751
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 +15 -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
|
@@ -5121,9 +5121,18 @@ declare class Pipeline4HighDensityRepairSolver extends BaseSolver {
|
|
|
5121
5121
|
visualize(): GraphicsObject;
|
|
5122
5122
|
}
|
|
5123
5123
|
|
|
5124
|
+
type StitchSegment = {
|
|
5125
|
+
connectionName: string;
|
|
5126
|
+
start: Point3;
|
|
5127
|
+
end: Point3;
|
|
5128
|
+
traceThickness: number;
|
|
5129
|
+
};
|
|
5130
|
+
type IsStitchSegmentClear = (stitchSegment: StitchSegment) => boolean;
|
|
5131
|
+
|
|
5124
5132
|
type StitchTerminal = Point3 & {
|
|
5125
5133
|
pcb_port_id?: string;
|
|
5126
5134
|
};
|
|
5135
|
+
type StitchClearanceMode = "require_clear" | "prefer_clear";
|
|
5127
5136
|
|
|
5128
5137
|
declare class SingleHighDensityRouteStitchSolver3 extends BaseSolver {
|
|
5129
5138
|
getSolverName(): string;
|
|
@@ -5133,6 +5142,9 @@ declare class SingleHighDensityRouteStitchSolver3 extends BaseSolver {
|
|
|
5133
5142
|
end: StitchTerminal;
|
|
5134
5143
|
colorMap: Record<string, string>;
|
|
5135
5144
|
allowedLayerTransitionPointKeys?: Set<string>;
|
|
5145
|
+
isStitchSegmentClear: IsStitchSegmentClear;
|
|
5146
|
+
stitchClearanceMode: StitchClearanceMode;
|
|
5147
|
+
private isPlanarStitchClear;
|
|
5136
5148
|
constructor(opts: {
|
|
5137
5149
|
connectionName: string;
|
|
5138
5150
|
hdRoutes: HighDensityIntraNodeRoute$1[];
|
|
@@ -5143,6 +5155,8 @@ declare class SingleHighDensityRouteStitchSolver3 extends BaseSolver {
|
|
|
5143
5155
|
defaultViaDiameter?: number;
|
|
5144
5156
|
allowedLayerTransitionPointKeys?: Set<string>;
|
|
5145
5157
|
preserveTerminalPcbPortIds?: boolean;
|
|
5158
|
+
isStitchSegmentClear: IsStitchSegmentClear;
|
|
5159
|
+
stitchClearanceMode: StitchClearanceMode;
|
|
5146
5160
|
});
|
|
5147
5161
|
getDisjointedRoute(): {
|
|
5148
5162
|
firstRoute: HighDensityIntraNodeRoute$1;
|
|
@@ -5168,6 +5182,7 @@ declare class MultipleHighDensityRouteStitchSolver3 extends BaseSolver {
|
|
|
5168
5182
|
allowedLayerTransitionPointKeys?: Set<string>;
|
|
5169
5183
|
preserveTerminalPcbPortIds: boolean;
|
|
5170
5184
|
private endpointIndex;
|
|
5185
|
+
private clearanceValidator;
|
|
5171
5186
|
private canStitchBetweenTerminals;
|
|
5172
5187
|
private getSharedRootPathRoutes;
|
|
5173
5188
|
constructor(params: {
|