@tscircuit/capacity-autorouter 0.0.352 → 0.0.354

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
@@ -2435,13 +2435,13 @@ declare class TraceWidthSolver extends BaseSolver {
2435
2435
  getHdRoutesWithWidths(): HighDensityRoute$1[];
2436
2436
  }
2437
2437
 
2438
- interface CapacityMeshSolverOptions$5 {
2438
+ interface CapacityMeshSolverOptions$6 {
2439
2439
  capacityDepth?: number;
2440
2440
  targetMinCapacity?: number;
2441
2441
  cacheProvider?: CacheProvider | null;
2442
2442
  effort?: number;
2443
2443
  }
2444
- type PipelineStep$5<T extends new (...args: any[]) => BaseSolver> = {
2444
+ type PipelineStep$6<T extends new (...args: any[]) => BaseSolver> = {
2445
2445
  solverName: string;
2446
2446
  solverClass: T;
2447
2447
  getConstructorParams: (instance: AutoroutingPipelineSolver2_PortPointPathing) => ConstructorParameters<T>;
@@ -2449,7 +2449,7 @@ type PipelineStep$5<T extends new (...args: any[]) => BaseSolver> = {
2449
2449
  };
2450
2450
  declare class AutoroutingPipelineSolver2_PortPointPathing extends BaseSolver {
2451
2451
  readonly srj: SimpleRouteJson;
2452
- readonly opts: CapacityMeshSolverOptions$5;
2452
+ readonly opts: CapacityMeshSolverOptions$6;
2453
2453
  getSolverName(): string;
2454
2454
  netToPointPairsSolver?: NetToPointPairsSolver;
2455
2455
  nodeSolver?: RectDiffPipeline;
@@ -2480,9 +2480,9 @@ declare class AutoroutingPipelineSolver2_PortPointPathing extends BaseSolver {
2480
2480
  capacityEdges: CapacityMeshEdge[] | null;
2481
2481
  inputNodeWithPortPoints: InputNodeWithPortPoints[];
2482
2482
  cacheProvider: CacheProvider | null;
2483
- pipelineDef: (PipelineStep$5<typeof NetToPointPairsSolver2_OffBoardConnection> | PipelineStep$5<typeof RectDiffPipeline> | PipelineStep$5<typeof CapacityMeshEdgeSolver2_NodeTreeOptimization> | PipelineStep$5<typeof AvailableSegmentPointSolver> | PipelineStep$5<typeof HyperPortPointPathingSolver> | PipelineStep$5<typeof MultiSectionPortPointOptimizer> | PipelineStep$5<typeof UniformPortDistributionSolver> | PipelineStep$5<typeof HighDensitySolver> | PipelineStep$5<typeof MultipleHighDensityRouteStitchSolver> | PipelineStep$5<typeof TraceSimplificationSolver> | PipelineStep$5<typeof TraceWidthSolver>)[];
2484
- constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$5);
2485
- getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$5];
2483
+ pipelineDef: (PipelineStep$6<typeof NetToPointPairsSolver2_OffBoardConnection> | PipelineStep$6<typeof RectDiffPipeline> | PipelineStep$6<typeof CapacityMeshEdgeSolver2_NodeTreeOptimization> | PipelineStep$6<typeof AvailableSegmentPointSolver> | PipelineStep$6<typeof HyperPortPointPathingSolver> | PipelineStep$6<typeof MultiSectionPortPointOptimizer> | PipelineStep$6<typeof UniformPortDistributionSolver> | PipelineStep$6<typeof HighDensitySolver> | PipelineStep$6<typeof MultipleHighDensityRouteStitchSolver> | PipelineStep$6<typeof TraceSimplificationSolver> | PipelineStep$6<typeof TraceWidthSolver>)[];
2484
+ constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$6);
2485
+ getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$6];
2486
2486
  currentPipelineStepIndex: number;
2487
2487
  _step(): void;
2488
2488
  solveUntilPhase(phase: string): void;
@@ -3471,12 +3471,12 @@ declare class UnravelMultiSectionSolver extends BaseSolver {
3471
3471
  getNodesWithPortPoints(): NodeWithPortPoints[];
3472
3472
  }
3473
3473
 
3474
- interface CapacityMeshSolverOptions$4 {
3474
+ interface CapacityMeshSolverOptions$5 {
3475
3475
  capacityDepth?: number;
3476
3476
  targetMinCapacity?: number;
3477
3477
  cacheProvider?: CacheProvider | null;
3478
3478
  }
3479
- type PipelineStep$4<T extends new (...args: any[]) => BaseSolver> = {
3479
+ type PipelineStep$5<T extends new (...args: any[]) => BaseSolver> = {
3480
3480
  solverName: string;
3481
3481
  solverClass: T;
3482
3482
  getConstructorParams: (instance: AutoroutingPipeline1_OriginalUnravel) => ConstructorParameters<T>;
@@ -3484,7 +3484,7 @@ type PipelineStep$4<T extends new (...args: any[]) => BaseSolver> = {
3484
3484
  };
3485
3485
  declare class AutoroutingPipeline1_OriginalUnravel extends BaseSolver {
3486
3486
  readonly srj: SimpleRouteJson;
3487
- readonly opts: CapacityMeshSolverOptions$4;
3487
+ readonly opts: CapacityMeshSolverOptions$5;
3488
3488
  getSolverName(): string;
3489
3489
  netToPointPairsSolver?: NetToPointPairsSolver;
3490
3490
  nodeSolver?: CapacityMeshNodeSolver;
@@ -3514,9 +3514,9 @@ declare class AutoroutingPipeline1_OriginalUnravel extends BaseSolver {
3514
3514
  capacityNodes: CapacityMeshNode[] | null;
3515
3515
  capacityEdges: CapacityMeshEdge[] | null;
3516
3516
  cacheProvider: CacheProvider | null;
3517
- pipelineDef: (PipelineStep$4<typeof NetToPointPairsSolver2_OffBoardConnection> | PipelineStep$4<typeof CapacityMeshNodeSolver2_NodeUnderObstacle> | PipelineStep$4<typeof SingleLayerNodeMergerSolver> | PipelineStep$4<typeof StrawSolver> | PipelineStep$4<typeof CapacityMeshEdgeSolver2_NodeTreeOptimization> | PipelineStep$4<typeof DeadEndSolver> | PipelineStep$4<typeof CapacityPathingGreedySolver> | PipelineStep$4<typeof CapacityPathingMultiSectionSolver> | PipelineStep$4<typeof CapacityEdgeToPortSegmentSolver> | PipelineStep$4<typeof CapacitySegmentToPointSolver> | PipelineStep$4<typeof UnravelMultiSectionSolver> | PipelineStep$4<typeof HighDensitySolver> | PipelineStep$4<typeof NoOffBoardMultipleHighDensityRouteStitchSolver> | PipelineStep$4<typeof TraceSimplificationSolver>)[];
3518
- constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$4);
3519
- getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$4];
3517
+ pipelineDef: (PipelineStep$5<typeof NetToPointPairsSolver2_OffBoardConnection> | PipelineStep$5<typeof CapacityMeshNodeSolver2_NodeUnderObstacle> | PipelineStep$5<typeof SingleLayerNodeMergerSolver> | PipelineStep$5<typeof StrawSolver> | PipelineStep$5<typeof CapacityMeshEdgeSolver2_NodeTreeOptimization> | PipelineStep$5<typeof DeadEndSolver> | PipelineStep$5<typeof CapacityPathingGreedySolver> | PipelineStep$5<typeof CapacityPathingMultiSectionSolver> | PipelineStep$5<typeof CapacityEdgeToPortSegmentSolver> | PipelineStep$5<typeof CapacitySegmentToPointSolver> | PipelineStep$5<typeof UnravelMultiSectionSolver> | PipelineStep$5<typeof HighDensitySolver> | PipelineStep$5<typeof NoOffBoardMultipleHighDensityRouteStitchSolver> | PipelineStep$5<typeof TraceSimplificationSolver>)[];
3518
+ constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$5);
3519
+ getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$5];
3520
3520
  currentPipelineStepIndex: number;
3521
3521
  _step(): void;
3522
3522
  solveUntilPhase(phase: string): void;
@@ -4221,13 +4221,13 @@ declare class SimpleHighDensitySolver extends BaseSolver {
4221
4221
  visualize(): GraphicsObject;
4222
4222
  }
4223
4223
 
4224
- interface CapacityMeshSolverOptions$3 {
4224
+ interface CapacityMeshSolverOptions$4 {
4225
4225
  capacityDepth?: number;
4226
4226
  targetMinCapacity?: number;
4227
4227
  cacheProvider?: CacheProvider | null;
4228
4228
  effort?: number;
4229
4229
  }
4230
- type PipelineStep$3<T extends new (...args: any[]) => BaseSolver> = {
4230
+ type PipelineStep$4<T extends new (...args: any[]) => BaseSolver> = {
4231
4231
  solverName: string;
4232
4232
  solverClass: T;
4233
4233
  getConstructorParams: (instance: AssignableAutoroutingPipeline2) => ConstructorParameters<T>;
@@ -4235,7 +4235,7 @@ type PipelineStep$3<T extends new (...args: any[]) => BaseSolver> = {
4235
4235
  };
4236
4236
  declare class AssignableAutoroutingPipeline2 extends BaseSolver {
4237
4237
  readonly srj: SimpleRouteJson;
4238
- readonly opts: CapacityMeshSolverOptions$3;
4238
+ readonly opts: CapacityMeshSolverOptions$4;
4239
4239
  getSolverName(): string;
4240
4240
  netToPointPairsSolver?: NetToPointPairsSolver;
4241
4241
  nodeSolver?: RectDiffPipeline;
@@ -4270,9 +4270,9 @@ declare class AssignableAutoroutingPipeline2 extends BaseSolver {
4270
4270
  capacityNodes: CapacityMeshNode[] | null;
4271
4271
  capacityEdges: CapacityMeshEdge[] | null;
4272
4272
  cacheProvider: CacheProvider | null;
4273
- pipelineDef: (PipelineStep$3<typeof NetToPointPairsSolver> | PipelineStep$3<typeof RectDiffPipeline> | PipelineStep$3<typeof RelateNodesToOffBoardConnectionsSolver> | PipelineStep$3<typeof CapacityMeshEdgeSolver2_NodeTreeOptimization> | PipelineStep$3<typeof AvailableSegmentPointSolver> | PipelineStep$3<typeof HyperPortPointPathingSolver> | PipelineStep$3<typeof MultiSectionPortPointOptimizer> | PipelineStep$3<typeof SimpleHighDensitySolver> | PipelineStep$3<typeof MultipleHighDensityRouteStitchSolver> | PipelineStep$3<typeof TraceSimplificationSolver> | PipelineStep$3<typeof TraceKeepoutSolver> | PipelineStep$3<typeof TraceWidthSolver>)[];
4274
- constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$3);
4275
- getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$3];
4273
+ pipelineDef: (PipelineStep$4<typeof NetToPointPairsSolver> | PipelineStep$4<typeof RectDiffPipeline> | PipelineStep$4<typeof RelateNodesToOffBoardConnectionsSolver> | PipelineStep$4<typeof CapacityMeshEdgeSolver2_NodeTreeOptimization> | PipelineStep$4<typeof AvailableSegmentPointSolver> | PipelineStep$4<typeof HyperPortPointPathingSolver> | PipelineStep$4<typeof MultiSectionPortPointOptimizer> | PipelineStep$4<typeof SimpleHighDensitySolver> | PipelineStep$4<typeof MultipleHighDensityRouteStitchSolver> | PipelineStep$4<typeof TraceSimplificationSolver> | PipelineStep$4<typeof TraceKeepoutSolver> | PipelineStep$4<typeof TraceWidthSolver>)[];
4274
+ constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$4);
4275
+ getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$4];
4276
4276
  currentPipelineStepIndex: number;
4277
4277
  _step(): void;
4278
4278
  solveUntilPhase(phase: string): void;
@@ -4365,13 +4365,13 @@ declare class MultipleHighDensityRouteStitchSolver2 extends BaseSolver {
4365
4365
  visualize(): GraphicsObject;
4366
4366
  }
4367
4367
 
4368
- interface CapacityMeshSolverOptions$2 {
4368
+ interface CapacityMeshSolverOptions$3 {
4369
4369
  capacityDepth?: number;
4370
4370
  targetMinCapacity?: number;
4371
4371
  cacheProvider?: CacheProvider | null;
4372
4372
  effort?: number;
4373
4373
  }
4374
- type PipelineStep$2<T extends new (...args: any[]) => BaseSolver> = {
4374
+ type PipelineStep$3<T extends new (...args: any[]) => BaseSolver> = {
4375
4375
  solverName: string;
4376
4376
  solverClass: T;
4377
4377
  getConstructorParams: (instance: AssignableAutoroutingPipeline3) => ConstructorParameters<T>;
@@ -4379,7 +4379,7 @@ type PipelineStep$2<T extends new (...args: any[]) => BaseSolver> = {
4379
4379
  };
4380
4380
  declare class AssignableAutoroutingPipeline3 extends BaseSolver {
4381
4381
  readonly srj: SimpleRouteJson;
4382
- readonly opts: CapacityMeshSolverOptions$2;
4382
+ readonly opts: CapacityMeshSolverOptions$3;
4383
4383
  getSolverName(): string;
4384
4384
  netToPointPairsSolver?: NetToPointPairsSolver;
4385
4385
  traceKeepoutSolver?: TraceKeepoutSolver;
@@ -4414,9 +4414,9 @@ declare class AssignableAutoroutingPipeline3 extends BaseSolver {
4414
4414
  capacityNodes: CapacityMeshNode[] | null;
4415
4415
  capacityEdges: CapacityMeshEdge[] | null;
4416
4416
  cacheProvider: CacheProvider | null;
4417
- pipelineDef: (PipelineStep$2<typeof NetToPointPairsSolver> | PipelineStep$2<typeof RectDiffPipeline> | PipelineStep$2<typeof RelateNodesToOffBoardConnectionsSolver> | PipelineStep$2<typeof CapacityMeshEdgeSolver2_NodeTreeOptimization> | PipelineStep$2<typeof AvailableSegmentPointSolver> | PipelineStep$2<typeof HyperPortPointPathingSolver> | PipelineStep$2<typeof JumperHighDensitySolver> | PipelineStep$2<typeof MultipleHighDensityRouteStitchSolver2> | PipelineStep$2<typeof TraceKeepoutSolver>)[];
4418
- constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$2);
4419
- getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$2];
4417
+ pipelineDef: (PipelineStep$3<typeof NetToPointPairsSolver> | PipelineStep$3<typeof RectDiffPipeline> | PipelineStep$3<typeof RelateNodesToOffBoardConnectionsSolver> | PipelineStep$3<typeof CapacityMeshEdgeSolver2_NodeTreeOptimization> | PipelineStep$3<typeof AvailableSegmentPointSolver> | PipelineStep$3<typeof HyperPortPointPathingSolver> | PipelineStep$3<typeof JumperHighDensitySolver> | PipelineStep$3<typeof MultipleHighDensityRouteStitchSolver2> | PipelineStep$3<typeof TraceKeepoutSolver>)[];
4418
+ constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$3);
4419
+ getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$3];
4420
4420
  currentPipelineStepIndex: number;
4421
4421
  _step(): void;
4422
4422
  solveUntilPhase(phase: string): void;
@@ -4649,13 +4649,13 @@ declare class HgPortPointPathingSolver extends HyperGraphSolver<RegionHg, Region
4649
4649
  private visualizePfOverlay;
4650
4650
  }
4651
4651
 
4652
- interface CapacityMeshSolverOptions$1 {
4652
+ interface CapacityMeshSolverOptions$2 {
4653
4653
  capacityDepth?: number;
4654
4654
  targetMinCapacity?: number;
4655
4655
  cacheProvider?: CacheProvider | null;
4656
4656
  effort?: number;
4657
4657
  }
4658
- type PipelineStep$1<T extends new (...args: any[]) => BaseSolver> = {
4658
+ type PipelineStep$2<T extends new (...args: any[]) => BaseSolver> = {
4659
4659
  solverName: string;
4660
4660
  solverClass: T;
4661
4661
  getConstructorParams: (instance: AutoroutingPipelineSolver3_HgPortPointPathing) => ConstructorParameters<T>;
@@ -4663,7 +4663,7 @@ type PipelineStep$1<T extends new (...args: any[]) => BaseSolver> = {
4663
4663
  };
4664
4664
  declare class AutoroutingPipelineSolver3_HgPortPointPathing extends BaseSolver {
4665
4665
  readonly srj: SimpleRouteJson;
4666
- readonly opts: CapacityMeshSolverOptions$1;
4666
+ readonly opts: CapacityMeshSolverOptions$2;
4667
4667
  netToPointPairsSolver?: NetToPointPairsSolver;
4668
4668
  nodeSolver?: RectDiffPipeline;
4669
4669
  nodeTargetMerger?: CapacityNodeTargetMerger;
@@ -4694,7 +4694,87 @@ declare class AutoroutingPipelineSolver3_HgPortPointPathing extends BaseSolver {
4694
4694
  capacityNodes: CapacityMeshNode[] | null;
4695
4695
  capacityEdges: CapacityMeshEdge[] | null;
4696
4696
  cacheProvider: CacheProvider | null;
4697
- pipelineDef: (PipelineStep$1<typeof NetToPointPairsSolver2_OffBoardConnection> | PipelineStep$1<typeof RectDiffPipeline> | PipelineStep$1<typeof CapacityMeshEdgeSolver2_NodeTreeOptimization> | PipelineStep$1<typeof AvailableSegmentPointSolver> | PipelineStep$1<typeof MultiTargetNecessaryCrampedPortPointSolver> | PipelineStep$1<typeof HgPortPointPathingSolver> | PipelineStep$1<typeof HyperGraphSectionOptimizer> | PipelineStep$1<typeof UniformPortDistributionSolver> | PipelineStep$1<typeof HighDensitySolver> | PipelineStep$1<typeof MultipleHighDensityRouteStitchSolver> | PipelineStep$1<typeof TraceSimplificationSolver> | PipelineStep$1<typeof TraceWidthSolver>)[];
4697
+ pipelineDef: (PipelineStep$2<typeof NetToPointPairsSolver2_OffBoardConnection> | PipelineStep$2<typeof RectDiffPipeline> | PipelineStep$2<typeof CapacityMeshEdgeSolver2_NodeTreeOptimization> | PipelineStep$2<typeof AvailableSegmentPointSolver> | PipelineStep$2<typeof MultiTargetNecessaryCrampedPortPointSolver> | PipelineStep$2<typeof HgPortPointPathingSolver> | PipelineStep$2<typeof HyperGraphSectionOptimizer> | PipelineStep$2<typeof UniformPortDistributionSolver> | PipelineStep$2<typeof HighDensitySolver> | PipelineStep$2<typeof MultipleHighDensityRouteStitchSolver> | PipelineStep$2<typeof TraceSimplificationSolver> | PipelineStep$2<typeof TraceWidthSolver>)[];
4698
+ constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$2);
4699
+ getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$2];
4700
+ currentPipelineStepIndex: number;
4701
+ _step(): void;
4702
+ solveUntilPhase(phase: string): void;
4703
+ getCurrentPhase(): string;
4704
+ visualize(): GraphicsObject;
4705
+ preview(): GraphicsObject;
4706
+ _getOutputHdRoutes(): HighDensityRoute$1[];
4707
+ getOutputSimplifiedPcbTraces(): SimplifiedPcbTraces;
4708
+ getOutputSimpleRouteJson(): SimpleRouteJson;
4709
+ }
4710
+
4711
+ declare class TinyHypergraphPortPointPathingSolver extends BaseSolver {
4712
+ private params;
4713
+ private tinySolver;
4714
+ private inputNodeWithPortPoints;
4715
+ private originalRegionById;
4716
+ private originalRegionIds;
4717
+ constructor(params: HgPortPointPathingSolverParams);
4718
+ getSolverName(): string;
4719
+ _step(): void;
4720
+ preview(): GraphicsObject;
4721
+ private getRouteMetadata;
4722
+ private createAssignedPortPoint;
4723
+ getOutput(): {
4724
+ nodesWithPortPoints: NodeWithPortPoints[];
4725
+ inputNodeWithPortPoints: InputNodeWithPortPoints[];
4726
+ };
4727
+ computeNodePf(node: InputNodeWithPortPoints): number | null;
4728
+ tryFinalAcceptance(): void;
4729
+ getConstructorParams(): readonly [HgPortPointPathingSolverParams];
4730
+ visualize(): GraphicsObject;
4731
+ }
4732
+
4733
+ interface CapacityMeshSolverOptions$1 {
4734
+ capacityDepth?: number;
4735
+ targetMinCapacity?: number;
4736
+ cacheProvider?: CacheProvider | null;
4737
+ effort?: number;
4738
+ }
4739
+ type PipelineStep$1<T extends new (...args: any[]) => BaseSolver> = {
4740
+ solverName: string;
4741
+ solverClass: T;
4742
+ getConstructorParams: (instance: AutoroutingPipelineSolver4_TinyHypergraph) => ConstructorParameters<T>;
4743
+ onSolved?: (instance: AutoroutingPipelineSolver4_TinyHypergraph) => void;
4744
+ };
4745
+ declare class AutoroutingPipelineSolver4_TinyHypergraph extends BaseSolver {
4746
+ readonly srj: SimpleRouteJson;
4747
+ readonly opts: CapacityMeshSolverOptions$1;
4748
+ netToPointPairsSolver?: NetToPointPairsSolver;
4749
+ nodeSolver?: RectDiffPipeline;
4750
+ nodeTargetMerger?: CapacityNodeTargetMerger;
4751
+ edgeSolver?: CapacityMeshEdgeSolver;
4752
+ colorMap: Record<string, string>;
4753
+ highDensityRouteSolver?: HighDensitySolver;
4754
+ highDensityStitchSolver?: MultipleHighDensityRouteStitchSolver;
4755
+ singleLayerNodeMerger?: SingleLayerNodeMergerSolver;
4756
+ strawSolver?: StrawSolver;
4757
+ deadEndSolver?: DeadEndSolver;
4758
+ traceSimplificationSolver?: TraceSimplificationSolver;
4759
+ availableSegmentPointSolver?: AvailableSegmentPointSolver;
4760
+ portPointPathingSolver?: TinyHypergraphPortPointPathingSolver;
4761
+ multiSectionPortPointOptimizer?: MultiSectionPortPointOptimizer;
4762
+ uniformPortDistributionSolver?: UniformPortDistributionSolver;
4763
+ traceWidthSolver?: TraceWidthSolver;
4764
+ necessaryCrampedPortPointSolver?: MultiTargetNecessaryCrampedPortPointSolver;
4765
+ viaDiameter: number;
4766
+ minTraceWidth: number;
4767
+ effort: number;
4768
+ startTimeOfPhase: Record<string, number>;
4769
+ endTimeOfPhase: Record<string, number>;
4770
+ timeSpentOnPhase: Record<string, number>;
4771
+ activeSubSolver?: BaseSolver | null;
4772
+ connMap: ConnectivityMap;
4773
+ srjWithPointPairs?: SimpleRouteJson;
4774
+ capacityNodes: CapacityMeshNode[] | null;
4775
+ capacityEdges: CapacityMeshEdge[] | null;
4776
+ cacheProvider: CacheProvider | null;
4777
+ pipelineDef: (PipelineStep$1<typeof NetToPointPairsSolver2_OffBoardConnection> | PipelineStep$1<typeof RectDiffPipeline> | PipelineStep$1<typeof CapacityMeshEdgeSolver2_NodeTreeOptimization> | PipelineStep$1<typeof AvailableSegmentPointSolver> | PipelineStep$1<typeof MultiTargetNecessaryCrampedPortPointSolver> | PipelineStep$1<typeof TinyHypergraphPortPointPathingSolver> | PipelineStep$1<typeof UniformPortDistributionSolver> | PipelineStep$1<typeof HighDensitySolver> | PipelineStep$1<typeof MultipleHighDensityRouteStitchSolver> | PipelineStep$1<typeof TraceSimplificationSolver> | PipelineStep$1<typeof TraceWidthSolver>)[];
4698
4778
  constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$1);
4699
4779
  getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$1];
4700
4780
  currentPipelineStepIndex: number;
@@ -4702,20 +4782,8 @@ declare class AutoroutingPipelineSolver3_HgPortPointPathing extends BaseSolver {
4702
4782
  solveUntilPhase(phase: string): void;
4703
4783
  getCurrentPhase(): string;
4704
4784
  visualize(): GraphicsObject;
4705
- /**
4706
- * A lightweight version of the visualize method that can be used to stream
4707
- * progress
4708
- *
4709
- * We return the most relevant graphic for the stage:
4710
- * 1. netToPointPairs output
4711
- * 2. Capacity Planning Output
4712
- * 3. High Density Route Solver Output, max 200 lines
4713
- */
4714
4785
  preview(): GraphicsObject;
4715
4786
  _getOutputHdRoutes(): HighDensityRoute$1[];
4716
- /**
4717
- * Returns the SimpleRouteJson with routes converted to SimplifiedPcbTraces
4718
- */
4719
4787
  getOutputSimplifiedPcbTraces(): SimplifiedPcbTraces;
4720
4788
  getOutputSimpleRouteJson(): SimpleRouteJson;
4721
4789
  }
@@ -5761,4 +5829,4 @@ declare class IntraNodeSolverWithJumpers extends BaseSolver {
5761
5829
  visualize(): GraphicsObject;
5762
5830
  }
5763
5831
 
5764
- export { AssignableAutoroutingPipeline1Solver, AssignableAutoroutingPipeline2, AssignableAutoroutingPipeline3, AutoroutingPipeline1_OriginalUnravel, AutoroutingPipelineSolver2_PortPointPathing as AutoroutingPipelineSolver, AutoroutingPipelineSolver3_HgPortPointPathing, type AutoroutingPipelineSolverOptions, type CachableSolver, type CacheProvider, CapacityMeshSolver, CurvyIntraNodeSolver, type HighDensityIntraNodeRouteWithJumpers, JumperHighDensitySolver as HighDensitySolver, InMemoryCache, IntraNodeSolverWithJumpers, type Jumper, LocalStorageCache, SingleHighDensityRouteWithJumpersSolver, calculateOptimalCapacityDepth, convertSrjToGraphicsObject, getGlobalInMemoryCache, getGlobalLocalStorageCache, getTunedTotalCapacity1, setupGlobalCaches };
5832
+ export { AssignableAutoroutingPipeline1Solver, AssignableAutoroutingPipeline2, AssignableAutoroutingPipeline3, AutoroutingPipeline1_OriginalUnravel, AutoroutingPipelineSolver2_PortPointPathing as AutoroutingPipelineSolver, AutoroutingPipelineSolver3_HgPortPointPathing, AutoroutingPipelineSolver4_TinyHypergraph as AutoroutingPipelineSolver4, type AutoroutingPipelineSolverOptions, type CachableSolver, type CacheProvider, CapacityMeshSolver, CurvyIntraNodeSolver, type HighDensityIntraNodeRouteWithJumpers, JumperHighDensitySolver as HighDensitySolver, HyperSingleIntraNodeSolver, InMemoryCache, IntraNodeSolverWithJumpers, type Jumper, LocalStorageCache, SingleHighDensityRouteWithJumpersSolver, calculateOptimalCapacityDepth, convertSrjToGraphicsObject, getGlobalInMemoryCache, getGlobalLocalStorageCache, getTunedTotalCapacity1, setupGlobalCaches };