@tscircuit/capacity-autorouter 0.0.339 → 0.0.341
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 +4 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { GraphicsObject, Rect, Circle, Line, Point as Point$5 } from 'graphics-d
|
|
|
5
5
|
import { BaseSolver as BaseSolver$1 } from '@tscircuit/solver-utils';
|
|
6
6
|
import Flatbush from 'flatbush';
|
|
7
7
|
import { HighDensitySolverA03, NodeWithPortPoints as NodeWithPortPoints$1 } from '@tscircuit/high-density-a01';
|
|
8
|
-
import { ViaGraphSolver, ViaByNet, JumperGraphSolver, JRegion, JPort, Region, RegionPortAssignment, RegionPort, Connection, SolvedRoute, Candidate as Candidate$3, HyperGraph, HyperGraphSolver } from '@tscircuit/hypergraph';
|
|
8
|
+
import { ViaGraphSolver, ViaByNet, JumperGraphSolver, JRegion, JPort, Region, RegionPortAssignment, RegionPort, Connection, SolvedRoute, Candidate as Candidate$3, HyperGraph, HyperGraphSolver, HyperGraphSectionOptimizer } from '@tscircuit/hypergraph';
|
|
9
9
|
import { Point3, Polygon } from '@tscircuit/math-utils';
|
|
10
10
|
import { CurvyTraceSolver } from '@tscircuit/curvy-trace-solver';
|
|
11
11
|
import { ConnectivityMap as ConnectivityMap$1 } from 'connectivity-map';
|
|
@@ -4546,6 +4546,7 @@ interface HgPortPointPathingSolverParams {
|
|
|
4546
4546
|
graph: HyperGraphHg;
|
|
4547
4547
|
connections: ConnectionHg[];
|
|
4548
4548
|
colorMap?: Record<string, string>;
|
|
4549
|
+
inputSolvedRoutes?: SolvedRoutesHg[];
|
|
4549
4550
|
layerCount: number;
|
|
4550
4551
|
effort: number;
|
|
4551
4552
|
flags: {
|
|
@@ -4667,6 +4668,7 @@ declare class AutoroutingPipelineSolver3_HgPortPointPathing extends BaseSolver {
|
|
|
4667
4668
|
uniformPortDistributionSolver?: UniformPortDistributionSolver;
|
|
4668
4669
|
traceWidthSolver?: TraceWidthSolver;
|
|
4669
4670
|
necessaryCrampedPortPointSolver?: MultiTargetNecessaryCrampedPortPointSolver;
|
|
4671
|
+
hyperGraphSectionOptimizer?: HyperGraphSectionOptimizer;
|
|
4670
4672
|
viaDiameter: number;
|
|
4671
4673
|
minTraceWidth: number;
|
|
4672
4674
|
effort: number;
|
|
@@ -4679,7 +4681,7 @@ declare class AutoroutingPipelineSolver3_HgPortPointPathing extends BaseSolver {
|
|
|
4679
4681
|
capacityNodes: CapacityMeshNode[] | null;
|
|
4680
4682
|
capacityEdges: CapacityMeshEdge[] | null;
|
|
4681
4683
|
cacheProvider: CacheProvider | null;
|
|
4682
|
-
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 UniformPortDistributionSolver> | PipelineStep$1<typeof HighDensitySolver> | PipelineStep$1<typeof MultipleHighDensityRouteStitchSolver> | PipelineStep$1<typeof TraceSimplificationSolver> | PipelineStep$1<typeof TraceWidthSolver>)[];
|
|
4684
|
+
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>)[];
|
|
4683
4685
|
constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$1);
|
|
4684
4686
|
getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$1];
|
|
4685
4687
|
currentPipelineStepIndex: number;
|