@tscircuit/capacity-autorouter 0.0.573 → 0.0.575

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 CHANGED
@@ -5527,7 +5527,11 @@ interface DetectedComponent {
5527
5527
  replacementObstacle: Obstacle;
5528
5528
  }
5529
5529
  interface ComponentDetectionSolverOutput {
5530
- global: SimpleRouteJson;
5530
+ /**
5531
+ * Simple Route JSON where components are replaced with obstacles
5532
+ * and component connection points are omitted.
5533
+ */
5534
+ componentsAsObstaclesSrj: SimpleRouteJson;
5531
5535
  components: DetectedComponent[];
5532
5536
  }
5533
5537
  /**
@@ -5591,7 +5595,7 @@ interface MultiGraphTopologyPlannerSolverParams {
5591
5595
  viaDiameter?: number;
5592
5596
  obstacleMargin?: number;
5593
5597
  brokenSrj?: {
5594
- global: SimpleRouteJson;
5598
+ componentsAsObstaclesSrj: SimpleRouteJson;
5595
5599
  components: SerializedTopologyComponentInput[];
5596
5600
  };
5597
5601
  }
@@ -5704,7 +5708,7 @@ declare class AutoroutingPipelineSolver7_MultiGraph extends BaseSolver {
5704
5708
  sharedEdgeSegmentsWithNecessaryCrampedPortPoints?: SharedEdgeSegment[];
5705
5709
  highDensityNodePortPoints?: NodeWithPortPoints[];
5706
5710
  cacheProvider: CacheProvider | null;
5707
- pipelineDef: (PipelineStep$2<typeof PreprocessSimpleRouteJsonSolver$1> | PipelineStep$2<typeof EscapeViaLocationSolver> | PipelineStep$2<typeof NetToPointPairsSolver2_OffBoardConnection> | PipelineStep$2<typeof ComponentDetectionSolver> | PipelineStep$2<typeof MultiGraphTopologyPlannerSolver> | PipelineStep$2<typeof NodeDimensionSubdivisionSolver> | PipelineStep$2<typeof CapacityMeshEdgeSolver2_NodeTreeOptimization> | PipelineStep$2<typeof AvailableSegmentPointSolver> | PipelineStep$2<typeof MultiTargetNecessaryCrampedPortPointSolver> | PipelineStep$2<typeof TinyHypergraphPortPointPathingSolver> | PipelineStep$2<typeof UniformPortDistributionSolver> | PipelineStep$2<typeof HighDensitySolver> | PipelineStep$2<typeof HighDensityForceImproveSolver> | PipelineStep$2<typeof Pipeline4HighDensityRepairSolver> | PipelineStep$2<typeof MultipleHighDensityRouteStitchSolver3> | PipelineStep$2<typeof TraceSimplificationSolver> | PipelineStep$2<typeof TraceWidthSolver> | PipelineStep$2<typeof GlobalDrcForceImproveSolver>)[];
5711
+ pipelineDef: (PipelineStep$2<typeof PreprocessSimpleRouteJsonSolver$1> | PipelineStep$2<typeof ComponentDetectionSolver> | PipelineStep$2<typeof EscapeViaLocationSolver> | PipelineStep$2<typeof NetToPointPairsSolver2_OffBoardConnection> | PipelineStep$2<typeof MultiGraphTopologyPlannerSolver> | PipelineStep$2<typeof NodeDimensionSubdivisionSolver> | PipelineStep$2<typeof CapacityMeshEdgeSolver2_NodeTreeOptimization> | PipelineStep$2<typeof AvailableSegmentPointSolver> | PipelineStep$2<typeof MultiTargetNecessaryCrampedPortPointSolver> | PipelineStep$2<typeof TinyHypergraphPortPointPathingSolver> | PipelineStep$2<typeof UniformPortDistributionSolver> | PipelineStep$2<typeof HighDensitySolver> | PipelineStep$2<typeof HighDensityForceImproveSolver> | PipelineStep$2<typeof Pipeline4HighDensityRepairSolver> | PipelineStep$2<typeof MultipleHighDensityRouteStitchSolver3> | PipelineStep$2<typeof TraceSimplificationSolver> | PipelineStep$2<typeof TraceWidthSolver> | PipelineStep$2<typeof GlobalDrcForceImproveSolver>)[];
5708
5712
  constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$2);
5709
5713
  private setSimpleRouteJson;
5710
5714
  getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$2];