@tscircuit/capacity-autorouter 0.0.834 → 0.0.836
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 +33 -33
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -10,15 +10,15 @@ import { CurvyTraceSolver } from '@tscircuit/curvy-trace-solver';
|
|
|
10
10
|
import { JumperGraphSolver, JRegion, JPort, HyperGraph, RegionPort, Region, RegionPortAssignment, Connection, SolvedRoute, Candidate as Candidate$3, HyperGraphSolver, HyperGraphSectionOptimizer } from '@tscircuit/hypergraph';
|
|
11
11
|
import { ConnectivityMap as ConnectivityMap$1 } from 'connectivity-map';
|
|
12
12
|
import { HighDensityForceImproveSolver } from 'high-density-repair01/lib/HighDensityForceImproveSolver';
|
|
13
|
-
import { GlobalDrcForceImproveSolver, GlobalDrcBranchPortfolioSolverParams, HighDensityRoute as HighDensityRoute$2 } from 'high-density-repair03/lib';
|
|
13
|
+
import { GlobalDrcForceImproveSolver, GlobalDrcBranchPortfolioSolver, GlobalDrcBranchPortfolioSolverParams, HighDensityRoute as HighDensityRoute$2 } from 'high-density-repair03/lib';
|
|
14
14
|
export { DrcError, DrcEvaluator, DrcSnapshot, GlobalDrcBranchPortfolioSolver, GlobalDrcBranchPortfolioSolverParams, GlobalDrcForceImproveSolver, GlobalDrcForceImproveSolverParams, HighDensityRoute } from 'high-density-repair03/lib';
|
|
15
15
|
import { DatasetSample, HighDensityRepairSolver } from 'high-density-repair02';
|
|
16
16
|
import { LayerMergeMode, ConvexRegionsComputeResult, SerializedPolyHyperGraph } from 'pcb-poly-hyper-graph';
|
|
17
17
|
import { PolyHyperGraphLoadResult, PolyHyperGraphSolver } from 'tiny-hypergraph-poly/lib/index';
|
|
18
18
|
import { PostProcessingSolver } from '@tscircuit/length-matching-solver';
|
|
19
19
|
import { PowerTraceExpanderOptions, PowerTraceExpanderSolver } from '@tscircuit/power-trace-expander';
|
|
20
|
-
import * as high_density_repair03_types_high_density_types from 'high-density-repair03/types/high-density-types';
|
|
21
20
|
import { HighDensitySolverB01 } from '@tscircuit/high-density-b01';
|
|
21
|
+
import * as high_density_repair03_types_high_density_types from 'high-density-repair03/types/high-density-types';
|
|
22
22
|
import { FanoutSolverOptions, FanoutSolver, FanoutSolverOutput } from '@tscircuit/fanout-solver';
|
|
23
23
|
|
|
24
24
|
interface CacheProvider {
|
|
@@ -5918,35 +5918,6 @@ declare class MergedComponentTopologyView extends BaseSolver {
|
|
|
5918
5918
|
preview(): GraphicsObject;
|
|
5919
5919
|
}
|
|
5920
5920
|
|
|
5921
|
-
/**
|
|
5922
|
-
* Tries Pipeline7's inexpensive two-layer repair portfolio first, then accepts
|
|
5923
|
-
* it only when the same DRC evaluator used for candidate scoring reports a
|
|
5924
|
-
* clean result. Failed probes are discarded before the original full
|
|
5925
|
-
* portfolio runs, so routing behavior is selected by the result rather than
|
|
5926
|
-
* board-size thresholds.
|
|
5927
|
-
*/
|
|
5928
|
-
declare class Pipeline7AdaptiveDrcBranchPortfolioSolver extends BaseSolver$1 {
|
|
5929
|
-
readonly params: GlobalDrcBranchPortfolioSolverParams;
|
|
5930
|
-
readonly inputHdRoutes: HighDensityRoute$2[];
|
|
5931
|
-
outputHdRoutes: HighDensityRoute$2[];
|
|
5932
|
-
private phase;
|
|
5933
|
-
private fastProbeSolver?;
|
|
5934
|
-
private fallbackSolver?;
|
|
5935
|
-
private selectedSolver?;
|
|
5936
|
-
private fastProbeDrcIssueCount?;
|
|
5937
|
-
private fastProbeAttempted;
|
|
5938
|
-
constructor(params: GlobalDrcBranchPortfolioSolverParams);
|
|
5939
|
-
getConstructorParams(): [GlobalDrcBranchPortfolioSolverParams];
|
|
5940
|
-
private startFastProbe;
|
|
5941
|
-
private startFallback;
|
|
5942
|
-
private evaluateFastProbeDrcIssueCount;
|
|
5943
|
-
private finish;
|
|
5944
|
-
_step(): void;
|
|
5945
|
-
getOutput(): high_density_repair03_types_high_density_types.HighDensityIntraNodeRoute[];
|
|
5946
|
-
visualize(): GraphicsObject;
|
|
5947
|
-
preview(): GraphicsObject;
|
|
5948
|
-
}
|
|
5949
|
-
|
|
5950
5921
|
declare class PowerTraceExpansionSolver extends BaseSolver {
|
|
5951
5922
|
readonly inputSrj: SimpleRouteJson;
|
|
5952
5923
|
readonly options: PowerTraceExpanderOptions;
|
|
@@ -5998,7 +5969,7 @@ declare class AutoroutingPipelineSolver7_MultiGraph extends BaseSolver {
|
|
|
5998
5969
|
highDensityRepairSolver?: Pipeline4HighDensityRepairSolver;
|
|
5999
5970
|
highDensityStitchSolver?: MultipleHighDensityRouteStitchSolver3;
|
|
6000
5971
|
globalDrcForceImproveSolver?: GlobalDrcForceImproveSolver;
|
|
6001
|
-
exactGeometryDrcForceImproveSolver?:
|
|
5972
|
+
exactGeometryDrcForceImproveSolver?: GlobalDrcBranchPortfolioSolver;
|
|
6002
5973
|
singleLayerNodeMerger?: SingleLayerNodeMergerSolver;
|
|
6003
5974
|
strawSolver?: StrawSolver;
|
|
6004
5975
|
deadEndSolver?: DeadEndSolver;
|
|
@@ -6034,7 +6005,7 @@ declare class AutoroutingPipelineSolver7_MultiGraph extends BaseSolver {
|
|
|
6034
6005
|
sharedEdgeSegmentsWithNecessaryCrampedPortPoints?: SharedEdgeSegment[];
|
|
6035
6006
|
highDensityNodePortPoints?: NodeWithPortPoints[];
|
|
6036
6007
|
cacheProvider: CacheProvider | null;
|
|
6037
|
-
pipelineDef: (PipelineStep$3<typeof PreprocessSimpleRouteJsonSolver$1> | PipelineStep$3<typeof ComponentDetectionSolver> | PipelineStep$3<typeof EscapeViaLocationSolver> | PipelineStep$3<typeof NetToPointPairsSolver2_OffBoardConnection> | PipelineStep$3<typeof MultiGraphTopologyPlannerSolver> | PipelineStep$3<typeof TopologyMergingSolver> | PipelineStep$3<typeof NodeDimensionSubdivisionSolver> | PipelineStep$3<typeof CapacityMeshEdgeSolver2_NodeTreeOptimization> | PipelineStep$3<typeof AvailableSegmentPointSolver> | PipelineStep$3<typeof MultiTargetNecessaryCrampedPortPointSolver> | PipelineStep$3<typeof TinyHypergraphPortPointPathingSolver> | PipelineStep$3<typeof UniformPortDistributionSolver> | PipelineStep$3<typeof HighDensitySolver> | PipelineStep$3<typeof HighDensityForceImproveSolver> | PipelineStep$3<typeof Pipeline4HighDensityRepairSolver> | PipelineStep$3<typeof MultipleHighDensityRouteStitchSolver3> | PipelineStep$3<typeof TraceSimplificationSolver> | PipelineStep$3<typeof TraceWidthSolver> | PipelineStep$3<typeof GlobalDrcForceImproveSolver> | PipelineStep$3<typeof
|
|
6008
|
+
pipelineDef: (PipelineStep$3<typeof PreprocessSimpleRouteJsonSolver$1> | PipelineStep$3<typeof ComponentDetectionSolver> | PipelineStep$3<typeof EscapeViaLocationSolver> | PipelineStep$3<typeof NetToPointPairsSolver2_OffBoardConnection> | PipelineStep$3<typeof MultiGraphTopologyPlannerSolver> | PipelineStep$3<typeof TopologyMergingSolver> | PipelineStep$3<typeof NodeDimensionSubdivisionSolver> | PipelineStep$3<typeof CapacityMeshEdgeSolver2_NodeTreeOptimization> | PipelineStep$3<typeof AvailableSegmentPointSolver> | PipelineStep$3<typeof MultiTargetNecessaryCrampedPortPointSolver> | PipelineStep$3<typeof TinyHypergraphPortPointPathingSolver> | PipelineStep$3<typeof UniformPortDistributionSolver> | PipelineStep$3<typeof HighDensitySolver> | PipelineStep$3<typeof HighDensityForceImproveSolver> | PipelineStep$3<typeof Pipeline4HighDensityRepairSolver> | PipelineStep$3<typeof MultipleHighDensityRouteStitchSolver3> | PipelineStep$3<typeof TraceSimplificationSolver> | PipelineStep$3<typeof TraceWidthSolver> | PipelineStep$3<typeof GlobalDrcForceImproveSolver> | PipelineStep$3<typeof GlobalDrcBranchPortfolioSolver> | PipelineStep$3<typeof PostProcessingSolver> | PipelineStep$3<typeof PowerTraceExpansionSolver>)[];
|
|
6038
6009
|
constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$3);
|
|
6039
6010
|
private setSimpleRouteJson;
|
|
6040
6011
|
getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$3];
|
|
@@ -6269,6 +6240,35 @@ declare class Pipeline9HighDensitySolver extends BaseSolver {
|
|
|
6269
6240
|
visualize(): GraphicsObject;
|
|
6270
6241
|
}
|
|
6271
6242
|
|
|
6243
|
+
/**
|
|
6244
|
+
* Tries Pipeline7's inexpensive two-layer repair portfolio first, then accepts
|
|
6245
|
+
* it only when the same DRC evaluator used for candidate scoring reports a
|
|
6246
|
+
* clean result. Failed probes are discarded before the original full
|
|
6247
|
+
* portfolio runs, so routing behavior is selected by the result rather than
|
|
6248
|
+
* board-size thresholds.
|
|
6249
|
+
*/
|
|
6250
|
+
declare class Pipeline7AdaptiveDrcBranchPortfolioSolver extends BaseSolver$1 {
|
|
6251
|
+
readonly params: GlobalDrcBranchPortfolioSolverParams;
|
|
6252
|
+
readonly inputHdRoutes: HighDensityRoute$2[];
|
|
6253
|
+
outputHdRoutes: HighDensityRoute$2[];
|
|
6254
|
+
private phase;
|
|
6255
|
+
private fastProbeSolver?;
|
|
6256
|
+
private fallbackSolver?;
|
|
6257
|
+
private selectedSolver?;
|
|
6258
|
+
private fastProbeDrcIssueCount?;
|
|
6259
|
+
private fastProbeAttempted;
|
|
6260
|
+
constructor(params: GlobalDrcBranchPortfolioSolverParams);
|
|
6261
|
+
getConstructorParams(): [GlobalDrcBranchPortfolioSolverParams];
|
|
6262
|
+
private startFastProbe;
|
|
6263
|
+
private startFallback;
|
|
6264
|
+
private evaluateFastProbeDrcIssueCount;
|
|
6265
|
+
private finish;
|
|
6266
|
+
_step(): void;
|
|
6267
|
+
getOutput(): high_density_repair03_types_high_density_types.HighDensityIntraNodeRoute[];
|
|
6268
|
+
visualize(): GraphicsObject;
|
|
6269
|
+
preview(): GraphicsObject;
|
|
6270
|
+
}
|
|
6271
|
+
|
|
6272
6272
|
type Pipeline9JointDrcRepairSolverParams = {
|
|
6273
6273
|
srj: SimpleRouteJson;
|
|
6274
6274
|
srjWithPointPairs: SimpleRouteJson;
|