@tscircuit/capacity-autorouter 0.0.848 → 0.0.849
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 +32 -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
|
@@ -6136,6 +6136,36 @@ declare class AutoroutingPipelineSolver8 extends BaseSolver {
|
|
|
6136
6136
|
getOutputSimpleRouteJson(): SimpleRouteJson;
|
|
6137
6137
|
}
|
|
6138
6138
|
|
|
6139
|
+
type LengthMatchingPostProcessingSolverParams = {
|
|
6140
|
+
hdRoutes: HighDensityRoute$1[];
|
|
6141
|
+
differentialPairs: DifferentialPair[];
|
|
6142
|
+
buses: SimpleRouteBus[];
|
|
6143
|
+
connections: SimpleRouteConnection[];
|
|
6144
|
+
obstacles: Obstacle[];
|
|
6145
|
+
bounds: {
|
|
6146
|
+
minX: number;
|
|
6147
|
+
maxX: number;
|
|
6148
|
+
minY: number;
|
|
6149
|
+
maxY: number;
|
|
6150
|
+
};
|
|
6151
|
+
layerCount: number;
|
|
6152
|
+
obstacleMargin: number;
|
|
6153
|
+
};
|
|
6154
|
+
/** Runs existing differential-pair post-processing, then tunes bus roots. */
|
|
6155
|
+
declare class LengthMatchingPostProcessingSolver extends BaseSolver {
|
|
6156
|
+
private readonly params;
|
|
6157
|
+
private readonly differentialPairSolver;
|
|
6158
|
+
private busLengthMatchingSolver?;
|
|
6159
|
+
private outputHdRoutes?;
|
|
6160
|
+
constructor(params: LengthMatchingPostProcessingSolverParams);
|
|
6161
|
+
getSolverName(): string;
|
|
6162
|
+
_step(): void;
|
|
6163
|
+
getOutput(): {
|
|
6164
|
+
hdRoutes: HighDensityRoute$1[];
|
|
6165
|
+
};
|
|
6166
|
+
visualize(): GraphicsObject;
|
|
6167
|
+
}
|
|
6168
|
+
|
|
6139
6169
|
type PreloadedHighDensityRoute = HighDensityRoute$1 & {
|
|
6140
6170
|
preloadedTraceIndex: number;
|
|
6141
6171
|
preloadedRouteIndex: number;
|
|
@@ -6396,7 +6426,7 @@ declare class AutoroutingPipelineSolver9_PreloadedTraceGraph extends BaseSolver
|
|
|
6396
6426
|
deadEndSolver?: DeadEndSolver;
|
|
6397
6427
|
traceSimplificationSolver?: TraceSimplificationSolver;
|
|
6398
6428
|
mutatedPreloadedTraceSimplificationSolver?: TraceSimplificationSolver;
|
|
6399
|
-
lengthMatchingPostProcessingSolver?:
|
|
6429
|
+
lengthMatchingPostProcessingSolver?: LengthMatchingPostProcessingSolver;
|
|
6400
6430
|
powerTraceExpansionSolver?: PowerTraceExpansionSolver;
|
|
6401
6431
|
availableSegmentPointSolver?: AvailableSegmentPointSolver;
|
|
6402
6432
|
portPointPathingSolver?: TinyHypergraphPortPointPathingSolver;
|
|
@@ -6428,7 +6458,7 @@ declare class AutoroutingPipelineSolver9_PreloadedTraceGraph extends BaseSolver
|
|
|
6428
6458
|
sharedEdgeSegmentsWithNecessaryCrampedPortPoints?: SharedEdgeSegment[];
|
|
6429
6459
|
highDensityNodePortPoints?: NodeWithPortPoints[];
|
|
6430
6460
|
cacheProvider: CacheProvider | null;
|
|
6431
|
-
pipelineDef: (PipelineStep$1<typeof PreprocessSimpleRouteJsonWithoutTraceObstaclesSolver> | PipelineStep$1<typeof ComponentDetectionSolver> | PipelineStep$1<typeof EscapeViaLocationSolver> | PipelineStep$1<typeof NetToPointPairsSolver2_OffBoardConnection> | PipelineStep$1<typeof MultiGraphTopologyPlannerSolver> | PipelineStep$1<typeof TopologyMergingSolver> | PipelineStep$1<typeof NodeDimensionSubdivisionSolver> | PipelineStep$1<typeof CapacityMeshEdgeSolver2_NodeTreeOptimization> | PipelineStep$1<typeof AvailableSegmentPointSolver> | PipelineStep$1<typeof MultiTargetNecessaryCrampedPortPointSolver> | PipelineStep$1<typeof PreloadedTraceGraphSolver> | PipelineStep$1<typeof TinyHypergraphPortPointPathingSolver> | PipelineStep$1<typeof UniformPortDistributionSolver> | PipelineStep$1<typeof Pipeline9HighDensitySolver> | PipelineStep$1<typeof HighDensityForceImproveSolver> | PipelineStep$1<typeof Pipeline4HighDensityRepairSolver> | PipelineStep$1<typeof MultipleHighDensityRouteStitchSolver3> | PipelineStep$1<typeof TraceSimplificationSolver> | PipelineStep$1<typeof TraceWidthSolver> | PipelineStep$1<typeof GlobalDrcForceImproveSolver> | PipelineStep$1<typeof Pipeline9JointDrcRepairSolver> | PipelineStep$1<typeof
|
|
6461
|
+
pipelineDef: (PipelineStep$1<typeof PreprocessSimpleRouteJsonWithoutTraceObstaclesSolver> | PipelineStep$1<typeof ComponentDetectionSolver> | PipelineStep$1<typeof EscapeViaLocationSolver> | PipelineStep$1<typeof NetToPointPairsSolver2_OffBoardConnection> | PipelineStep$1<typeof MultiGraphTopologyPlannerSolver> | PipelineStep$1<typeof TopologyMergingSolver> | PipelineStep$1<typeof NodeDimensionSubdivisionSolver> | PipelineStep$1<typeof CapacityMeshEdgeSolver2_NodeTreeOptimization> | PipelineStep$1<typeof AvailableSegmentPointSolver> | PipelineStep$1<typeof MultiTargetNecessaryCrampedPortPointSolver> | PipelineStep$1<typeof PreloadedTraceGraphSolver> | PipelineStep$1<typeof TinyHypergraphPortPointPathingSolver> | PipelineStep$1<typeof UniformPortDistributionSolver> | PipelineStep$1<typeof Pipeline9HighDensitySolver> | PipelineStep$1<typeof HighDensityForceImproveSolver> | PipelineStep$1<typeof Pipeline4HighDensityRepairSolver> | PipelineStep$1<typeof MultipleHighDensityRouteStitchSolver3> | PipelineStep$1<typeof TraceSimplificationSolver> | PipelineStep$1<typeof TraceWidthSolver> | PipelineStep$1<typeof GlobalDrcForceImproveSolver> | PipelineStep$1<typeof Pipeline9JointDrcRepairSolver> | PipelineStep$1<typeof LengthMatchingPostProcessingSolver> | PipelineStep$1<typeof PowerTraceExpansionSolver>)[];
|
|
6432
6462
|
constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$1);
|
|
6433
6463
|
private setSimpleRouteJson;
|
|
6434
6464
|
getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$1];
|