@tscircuit/capacity-autorouter 0.0.456 → 0.0.458
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 +327 -58
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +6 -4
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { RectDiffPipeline } from '@tscircuit/rectdiff';
|
|
2
2
|
import { ConnectivityMap } from 'circuit-json-to-connectivity-map';
|
|
3
3
|
import * as graphics_debug from 'graphics-debug';
|
|
4
|
-
import { GraphicsObject, Rect, Circle, Line, Point as Point$
|
|
4
|
+
import { GraphicsObject, Rect, Circle, Line, Point as Point$7 } from 'graphics-debug';
|
|
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';
|
|
@@ -14,6 +14,8 @@ import { GlobalDrcForceImproveSolver } from 'high-density-repair03/lib';
|
|
|
14
14
|
export { DrcError, DrcEvaluator, DrcSnapshot, GlobalDrcForceImproveSolver, GlobalDrcForceImproveSolverParams, HighDensityRoute, SimpleRouteJson, SimplifiedPcbTrace } from 'high-density-repair03/lib';
|
|
15
15
|
import { HighDensityForceImproveSolver } from 'high-density-repair01/lib/HighDensityForceImproveSolver';
|
|
16
16
|
import { DatasetSample, HighDensityRepairSolver } from 'high-density-repair02';
|
|
17
|
+
import { LayerMergeMode, ConvexRegionsComputeResult, SerializedPolyHyperGraph } from 'pcb-poly-hyper-graph';
|
|
18
|
+
import { PolyHyperGraphLoadResult, PolyHyperGraphSolver } from 'tiny-hypergraph-poly/lib/index';
|
|
17
19
|
|
|
18
20
|
interface CacheProvider {
|
|
19
21
|
isSyncCache: boolean;
|
|
@@ -1336,14 +1338,14 @@ declare class HyperParameterSupervisorSolver<T extends BaseSolver> extends BaseS
|
|
|
1336
1338
|
visualize(): GraphicsObject;
|
|
1337
1339
|
}
|
|
1338
1340
|
|
|
1339
|
-
type Point$
|
|
1341
|
+
type Point$6 = {
|
|
1340
1342
|
x: number;
|
|
1341
1343
|
y: number;
|
|
1342
1344
|
z?: number;
|
|
1343
1345
|
};
|
|
1344
1346
|
type Route$3 = {
|
|
1345
|
-
startPort: Point$
|
|
1346
|
-
endPort: Point$
|
|
1347
|
+
startPort: Point$6;
|
|
1348
|
+
endPort: Point$6;
|
|
1347
1349
|
connectionName: string;
|
|
1348
1350
|
};
|
|
1349
1351
|
declare class TwoCrossingRoutesHighDensitySolver extends BaseSolver {
|
|
@@ -1355,8 +1357,8 @@ declare class TwoCrossingRoutesHighDensitySolver extends BaseSolver {
|
|
|
1355
1357
|
obstacleMargin: number;
|
|
1356
1358
|
layerCount: number;
|
|
1357
1359
|
debugViaPositions: {
|
|
1358
|
-
via1: Point$
|
|
1359
|
-
via2: Point$
|
|
1360
|
+
via1: Point$6;
|
|
1361
|
+
via2: Point$6;
|
|
1360
1362
|
}[];
|
|
1361
1363
|
escapeLayer: number;
|
|
1362
1364
|
solvedRoutes: HighDensityIntraNodeRoute$1[];
|
|
@@ -1408,14 +1410,14 @@ declare class TwoCrossingRoutesHighDensitySolver extends BaseSolver {
|
|
|
1408
1410
|
getSolvedRoutes(): HighDensityIntraNodeRoute$1[];
|
|
1409
1411
|
}
|
|
1410
1412
|
|
|
1411
|
-
type Point$
|
|
1413
|
+
type Point$5 = {
|
|
1412
1414
|
x: number;
|
|
1413
1415
|
y: number;
|
|
1414
1416
|
z?: number;
|
|
1415
1417
|
};
|
|
1416
1418
|
type Route$2 = {
|
|
1417
|
-
A: Point$
|
|
1418
|
-
B: Point$
|
|
1419
|
+
A: Point$5;
|
|
1420
|
+
B: Point$5;
|
|
1419
1421
|
connectionName: string;
|
|
1420
1422
|
};
|
|
1421
1423
|
/**
|
|
@@ -1435,7 +1437,7 @@ declare class SingleTransitionCrossingRouteSolver extends BaseSolver {
|
|
|
1435
1437
|
obstacleMargin: number;
|
|
1436
1438
|
layerCount: number;
|
|
1437
1439
|
debugViaPositions: {
|
|
1438
|
-
via: Point$
|
|
1440
|
+
via: Point$5;
|
|
1439
1441
|
}[];
|
|
1440
1442
|
solvedRoutes: HighDensityIntraNodeRoute$1[];
|
|
1441
1443
|
bounds: {
|
|
@@ -1495,14 +1497,14 @@ declare class SingleTransitionCrossingRouteSolver extends BaseSolver {
|
|
|
1495
1497
|
getSolvedRoutes(): HighDensityIntraNodeRoute$1[];
|
|
1496
1498
|
}
|
|
1497
1499
|
|
|
1498
|
-
type Point$
|
|
1500
|
+
type Point$4 = {
|
|
1499
1501
|
x: number;
|
|
1500
1502
|
y: number;
|
|
1501
1503
|
z?: number;
|
|
1502
1504
|
};
|
|
1503
1505
|
type Route$1 = {
|
|
1504
|
-
A: Point$
|
|
1505
|
-
B: Point$
|
|
1506
|
+
A: Point$4;
|
|
1507
|
+
B: Point$4;
|
|
1506
1508
|
connectionName: string;
|
|
1507
1509
|
};
|
|
1508
1510
|
declare class SingleTransitionIntraNodeSolver extends BaseSolver {
|
|
@@ -1532,15 +1534,15 @@ declare class SingleTransitionIntraNodeSolver extends BaseSolver {
|
|
|
1532
1534
|
visualize(): GraphicsObject;
|
|
1533
1535
|
}
|
|
1534
1536
|
|
|
1535
|
-
type Point$
|
|
1537
|
+
type Point$3 = {
|
|
1536
1538
|
x: number;
|
|
1537
1539
|
y: number;
|
|
1538
1540
|
z?: number;
|
|
1539
1541
|
rootConnectionName?: string;
|
|
1540
1542
|
};
|
|
1541
1543
|
type Route = {
|
|
1542
|
-
A: Point$
|
|
1543
|
-
B: Point$
|
|
1544
|
+
A: Point$3;
|
|
1545
|
+
B: Point$3;
|
|
1544
1546
|
connectionName: string;
|
|
1545
1547
|
rootConnectionName?: string;
|
|
1546
1548
|
};
|
|
@@ -2421,7 +2423,7 @@ declare class ObstacleSpatialHashIndex {
|
|
|
2421
2423
|
searchArea(centerX: number, centerY: number, width: number, height: number): Obstacle[];
|
|
2422
2424
|
}
|
|
2423
2425
|
|
|
2424
|
-
interface Point$
|
|
2426
|
+
interface Point$2 {
|
|
2425
2427
|
x: number;
|
|
2426
2428
|
y: number;
|
|
2427
2429
|
z: number;
|
|
@@ -2457,8 +2459,8 @@ declare class HighDensityRouteSpatialIndex {
|
|
|
2457
2459
|
* @param margin The minimum required clearance distance from the query segment's centerline.
|
|
2458
2460
|
* @returns An array of conflicting routes and their minimum distance to the segment.
|
|
2459
2461
|
*/
|
|
2460
|
-
getConflictingRoutesForSegment(segmentStart: Point$
|
|
2461
|
-
segmentEnd: Point$
|
|
2462
|
+
getConflictingRoutesForSegment(segmentStart: Point$2, // Keep Point for original Z data if needed elsewhere
|
|
2463
|
+
segmentEnd: Point$2, margin: number): Array<{
|
|
2462
2464
|
conflictingRoute: HighDensityRoute;
|
|
2463
2465
|
distance: number;
|
|
2464
2466
|
}>;
|
|
@@ -2573,13 +2575,13 @@ declare class TraceWidthSolver extends BaseSolver {
|
|
|
2573
2575
|
getHdRoutesWithWidths(): HighDensityRoute$1[];
|
|
2574
2576
|
}
|
|
2575
2577
|
|
|
2576
|
-
interface CapacityMeshSolverOptions$
|
|
2578
|
+
interface CapacityMeshSolverOptions$7 {
|
|
2577
2579
|
capacityDepth?: number;
|
|
2578
2580
|
targetMinCapacity?: number;
|
|
2579
2581
|
cacheProvider?: CacheProvider | null;
|
|
2580
2582
|
effort?: number;
|
|
2581
2583
|
}
|
|
2582
|
-
type PipelineStep$
|
|
2584
|
+
type PipelineStep$7<T extends new (...args: any[]) => BaseSolver> = {
|
|
2583
2585
|
solverName: string;
|
|
2584
2586
|
solverClass: T;
|
|
2585
2587
|
getConstructorParams: (instance: AutoroutingPipelineSolver2_PortPointPathing) => ConstructorParameters<T>;
|
|
@@ -2587,7 +2589,7 @@ type PipelineStep$6<T extends new (...args: any[]) => BaseSolver> = {
|
|
|
2587
2589
|
};
|
|
2588
2590
|
declare class AutoroutingPipelineSolver2_PortPointPathing extends BaseSolver {
|
|
2589
2591
|
readonly srj: SimpleRouteJson;
|
|
2590
|
-
readonly opts: CapacityMeshSolverOptions$
|
|
2592
|
+
readonly opts: CapacityMeshSolverOptions$7;
|
|
2591
2593
|
getSolverName(): string;
|
|
2592
2594
|
netToPointPairsSolver?: NetToPointPairsSolver;
|
|
2593
2595
|
nodeSolver?: RectDiffPipeline;
|
|
@@ -2618,9 +2620,9 @@ declare class AutoroutingPipelineSolver2_PortPointPathing extends BaseSolver {
|
|
|
2618
2620
|
capacityEdges: CapacityMeshEdge[] | null;
|
|
2619
2621
|
inputNodeWithPortPoints: InputNodeWithPortPoints[];
|
|
2620
2622
|
cacheProvider: CacheProvider | null;
|
|
2621
|
-
pipelineDef: (PipelineStep$
|
|
2622
|
-
constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$
|
|
2623
|
-
getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$
|
|
2623
|
+
pipelineDef: (PipelineStep$7<typeof NetToPointPairsSolver2_OffBoardConnection> | PipelineStep$7<typeof RectDiffPipeline> | PipelineStep$7<typeof CapacityMeshEdgeSolver2_NodeTreeOptimization> | PipelineStep$7<typeof AvailableSegmentPointSolver> | PipelineStep$7<typeof HyperPortPointPathingSolver> | PipelineStep$7<typeof MultiSectionPortPointOptimizer> | PipelineStep$7<typeof UniformPortDistributionSolver> | PipelineStep$7<typeof HighDensitySolver> | PipelineStep$7<typeof MultipleHighDensityRouteStitchSolver> | PipelineStep$7<typeof TraceSimplificationSolver> | PipelineStep$7<typeof TraceWidthSolver>)[];
|
|
2624
|
+
constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$7);
|
|
2625
|
+
getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$7];
|
|
2624
2626
|
currentPipelineStepIndex: number;
|
|
2625
2627
|
_step(): void;
|
|
2626
2628
|
solveUntilPhase(phase: string): void;
|
|
@@ -3609,12 +3611,12 @@ declare class UnravelMultiSectionSolver extends BaseSolver {
|
|
|
3609
3611
|
getNodesWithPortPoints(): NodeWithPortPoints[];
|
|
3610
3612
|
}
|
|
3611
3613
|
|
|
3612
|
-
interface CapacityMeshSolverOptions$
|
|
3614
|
+
interface CapacityMeshSolverOptions$6 {
|
|
3613
3615
|
capacityDepth?: number;
|
|
3614
3616
|
targetMinCapacity?: number;
|
|
3615
3617
|
cacheProvider?: CacheProvider | null;
|
|
3616
3618
|
}
|
|
3617
|
-
type PipelineStep$
|
|
3619
|
+
type PipelineStep$6<T extends new (...args: any[]) => BaseSolver> = {
|
|
3618
3620
|
solverName: string;
|
|
3619
3621
|
solverClass: T;
|
|
3620
3622
|
getConstructorParams: (instance: AutoroutingPipeline1_OriginalUnravel) => ConstructorParameters<T>;
|
|
@@ -3622,7 +3624,7 @@ type PipelineStep$5<T extends new (...args: any[]) => BaseSolver> = {
|
|
|
3622
3624
|
};
|
|
3623
3625
|
declare class AutoroutingPipeline1_OriginalUnravel extends BaseSolver {
|
|
3624
3626
|
readonly srj: SimpleRouteJson;
|
|
3625
|
-
readonly opts: CapacityMeshSolverOptions$
|
|
3627
|
+
readonly opts: CapacityMeshSolverOptions$6;
|
|
3626
3628
|
getSolverName(): string;
|
|
3627
3629
|
netToPointPairsSolver?: NetToPointPairsSolver;
|
|
3628
3630
|
nodeSolver?: CapacityMeshNodeSolver;
|
|
@@ -3652,9 +3654,9 @@ declare class AutoroutingPipeline1_OriginalUnravel extends BaseSolver {
|
|
|
3652
3654
|
capacityNodes: CapacityMeshNode[] | null;
|
|
3653
3655
|
capacityEdges: CapacityMeshEdge[] | null;
|
|
3654
3656
|
cacheProvider: CacheProvider | null;
|
|
3655
|
-
pipelineDef: (PipelineStep$
|
|
3656
|
-
constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$
|
|
3657
|
-
getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$
|
|
3657
|
+
pipelineDef: (PipelineStep$6<typeof NetToPointPairsSolver2_OffBoardConnection> | PipelineStep$6<typeof CapacityMeshNodeSolver2_NodeUnderObstacle> | PipelineStep$6<typeof SingleLayerNodeMergerSolver> | PipelineStep$6<typeof StrawSolver> | PipelineStep$6<typeof CapacityMeshEdgeSolver2_NodeTreeOptimization> | PipelineStep$6<typeof DeadEndSolver> | PipelineStep$6<typeof CapacityPathingGreedySolver> | PipelineStep$6<typeof CapacityPathingMultiSectionSolver> | PipelineStep$6<typeof CapacityEdgeToPortSegmentSolver> | PipelineStep$6<typeof CapacitySegmentToPointSolver> | PipelineStep$6<typeof UnravelMultiSectionSolver> | PipelineStep$6<typeof HighDensitySolver> | PipelineStep$6<typeof NoOffBoardMultipleHighDensityRouteStitchSolver> | PipelineStep$6<typeof TraceSimplificationSolver>)[];
|
|
3658
|
+
constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$6);
|
|
3659
|
+
getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$6];
|
|
3658
3660
|
currentPipelineStepIndex: number;
|
|
3659
3661
|
_step(): void;
|
|
3660
3662
|
solveUntilPhase(phase: string): void;
|
|
@@ -4359,13 +4361,13 @@ declare class SimpleHighDensitySolver extends BaseSolver {
|
|
|
4359
4361
|
visualize(): GraphicsObject;
|
|
4360
4362
|
}
|
|
4361
4363
|
|
|
4362
|
-
interface CapacityMeshSolverOptions$
|
|
4364
|
+
interface CapacityMeshSolverOptions$5 {
|
|
4363
4365
|
capacityDepth?: number;
|
|
4364
4366
|
targetMinCapacity?: number;
|
|
4365
4367
|
cacheProvider?: CacheProvider | null;
|
|
4366
4368
|
effort?: number;
|
|
4367
4369
|
}
|
|
4368
|
-
type PipelineStep$
|
|
4370
|
+
type PipelineStep$5<T extends new (...args: any[]) => BaseSolver> = {
|
|
4369
4371
|
solverName: string;
|
|
4370
4372
|
solverClass: T;
|
|
4371
4373
|
getConstructorParams: (instance: AssignableAutoroutingPipeline2) => ConstructorParameters<T>;
|
|
@@ -4373,7 +4375,7 @@ type PipelineStep$4<T extends new (...args: any[]) => BaseSolver> = {
|
|
|
4373
4375
|
};
|
|
4374
4376
|
declare class AssignableAutoroutingPipeline2 extends BaseSolver {
|
|
4375
4377
|
readonly srj: SimpleRouteJson;
|
|
4376
|
-
readonly opts: CapacityMeshSolverOptions$
|
|
4378
|
+
readonly opts: CapacityMeshSolverOptions$5;
|
|
4377
4379
|
getSolverName(): string;
|
|
4378
4380
|
netToPointPairsSolver?: NetToPointPairsSolver;
|
|
4379
4381
|
nodeSolver?: RectDiffPipeline;
|
|
@@ -4408,9 +4410,9 @@ declare class AssignableAutoroutingPipeline2 extends BaseSolver {
|
|
|
4408
4410
|
capacityNodes: CapacityMeshNode[] | null;
|
|
4409
4411
|
capacityEdges: CapacityMeshEdge[] | null;
|
|
4410
4412
|
cacheProvider: CacheProvider | null;
|
|
4411
|
-
pipelineDef: (PipelineStep$
|
|
4412
|
-
constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$
|
|
4413
|
-
getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$
|
|
4413
|
+
pipelineDef: (PipelineStep$5<typeof NetToPointPairsSolver> | PipelineStep$5<typeof RectDiffPipeline> | PipelineStep$5<typeof RelateNodesToOffBoardConnectionsSolver> | PipelineStep$5<typeof CapacityMeshEdgeSolver2_NodeTreeOptimization> | PipelineStep$5<typeof AvailableSegmentPointSolver> | PipelineStep$5<typeof HyperPortPointPathingSolver> | PipelineStep$5<typeof MultiSectionPortPointOptimizer> | PipelineStep$5<typeof SimpleHighDensitySolver> | PipelineStep$5<typeof MultipleHighDensityRouteStitchSolver> | PipelineStep$5<typeof TraceSimplificationSolver> | PipelineStep$5<typeof TraceKeepoutSolver> | PipelineStep$5<typeof TraceWidthSolver>)[];
|
|
4414
|
+
constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$5);
|
|
4415
|
+
getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$5];
|
|
4414
4416
|
currentPipelineStepIndex: number;
|
|
4415
4417
|
_step(): void;
|
|
4416
4418
|
solveUntilPhase(phase: string): void;
|
|
@@ -4503,13 +4505,13 @@ declare class MultipleHighDensityRouteStitchSolver2 extends BaseSolver {
|
|
|
4503
4505
|
visualize(): GraphicsObject;
|
|
4504
4506
|
}
|
|
4505
4507
|
|
|
4506
|
-
interface CapacityMeshSolverOptions$
|
|
4508
|
+
interface CapacityMeshSolverOptions$4 {
|
|
4507
4509
|
capacityDepth?: number;
|
|
4508
4510
|
targetMinCapacity?: number;
|
|
4509
4511
|
cacheProvider?: CacheProvider | null;
|
|
4510
4512
|
effort?: number;
|
|
4511
4513
|
}
|
|
4512
|
-
type PipelineStep$
|
|
4514
|
+
type PipelineStep$4<T extends new (...args: any[]) => BaseSolver> = {
|
|
4513
4515
|
solverName: string;
|
|
4514
4516
|
solverClass: T;
|
|
4515
4517
|
getConstructorParams: (instance: AssignableAutoroutingPipeline3) => ConstructorParameters<T>;
|
|
@@ -4517,7 +4519,7 @@ type PipelineStep$3<T extends new (...args: any[]) => BaseSolver> = {
|
|
|
4517
4519
|
};
|
|
4518
4520
|
declare class AssignableAutoroutingPipeline3 extends BaseSolver {
|
|
4519
4521
|
readonly srj: SimpleRouteJson;
|
|
4520
|
-
readonly opts: CapacityMeshSolverOptions$
|
|
4522
|
+
readonly opts: CapacityMeshSolverOptions$4;
|
|
4521
4523
|
getSolverName(): string;
|
|
4522
4524
|
netToPointPairsSolver?: NetToPointPairsSolver;
|
|
4523
4525
|
traceKeepoutSolver?: TraceKeepoutSolver;
|
|
@@ -4552,9 +4554,9 @@ declare class AssignableAutoroutingPipeline3 extends BaseSolver {
|
|
|
4552
4554
|
capacityNodes: CapacityMeshNode[] | null;
|
|
4553
4555
|
capacityEdges: CapacityMeshEdge[] | null;
|
|
4554
4556
|
cacheProvider: CacheProvider | null;
|
|
4555
|
-
pipelineDef: (PipelineStep$
|
|
4556
|
-
constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$
|
|
4557
|
-
getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$
|
|
4557
|
+
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 JumperHighDensitySolver> | PipelineStep$4<typeof MultipleHighDensityRouteStitchSolver2> | PipelineStep$4<typeof TraceKeepoutSolver>)[];
|
|
4558
|
+
constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$4);
|
|
4559
|
+
getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$4];
|
|
4558
4560
|
currentPipelineStepIndex: number;
|
|
4559
4561
|
_step(): void;
|
|
4560
4562
|
solveUntilPhase(phase: string): void;
|
|
@@ -4794,13 +4796,13 @@ declare class HgPortPointPathingSolver extends HyperGraphSolver<RegionHg, Region
|
|
|
4794
4796
|
private visualizePfOverlay;
|
|
4795
4797
|
}
|
|
4796
4798
|
|
|
4797
|
-
interface CapacityMeshSolverOptions$
|
|
4799
|
+
interface CapacityMeshSolverOptions$3 {
|
|
4798
4800
|
capacityDepth?: number;
|
|
4799
4801
|
targetMinCapacity?: number;
|
|
4800
4802
|
cacheProvider?: CacheProvider | null;
|
|
4801
4803
|
effort?: number;
|
|
4802
4804
|
}
|
|
4803
|
-
type PipelineStep$
|
|
4805
|
+
type PipelineStep$3<T extends new (...args: any[]) => BaseSolver> = {
|
|
4804
4806
|
solverName: string;
|
|
4805
4807
|
solverClass: T;
|
|
4806
4808
|
getConstructorParams: (instance: AutoroutingPipelineSolver3_HgPortPointPathing) => ConstructorParameters<T>;
|
|
@@ -4808,7 +4810,7 @@ type PipelineStep$2<T extends new (...args: any[]) => BaseSolver> = {
|
|
|
4808
4810
|
};
|
|
4809
4811
|
declare class AutoroutingPipelineSolver3_HgPortPointPathing extends BaseSolver {
|
|
4810
4812
|
readonly srj: SimpleRouteJson;
|
|
4811
|
-
readonly opts: CapacityMeshSolverOptions$
|
|
4813
|
+
readonly opts: CapacityMeshSolverOptions$3;
|
|
4812
4814
|
netToPointPairsSolver?: NetToPointPairsSolver;
|
|
4813
4815
|
nodeSolver?: RectDiffPipeline;
|
|
4814
4816
|
nodeTargetMerger?: CapacityNodeTargetMerger;
|
|
@@ -4839,9 +4841,9 @@ declare class AutoroutingPipelineSolver3_HgPortPointPathing extends BaseSolver {
|
|
|
4839
4841
|
capacityNodes: CapacityMeshNode[] | null;
|
|
4840
4842
|
capacityEdges: CapacityMeshEdge[] | null;
|
|
4841
4843
|
cacheProvider: CacheProvider | null;
|
|
4842
|
-
pipelineDef: (PipelineStep$
|
|
4843
|
-
constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$
|
|
4844
|
-
getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$
|
|
4844
|
+
pipelineDef: (PipelineStep$3<typeof NetToPointPairsSolver2_OffBoardConnection> | PipelineStep$3<typeof RectDiffPipeline> | PipelineStep$3<typeof CapacityMeshEdgeSolver2_NodeTreeOptimization> | PipelineStep$3<typeof AvailableSegmentPointSolver> | PipelineStep$3<typeof MultiTargetNecessaryCrampedPortPointSolver> | PipelineStep$3<typeof HgPortPointPathingSolver> | PipelineStep$3<typeof HyperGraphSectionOptimizer> | PipelineStep$3<typeof UniformPortDistributionSolver> | PipelineStep$3<typeof HighDensitySolver> | PipelineStep$3<typeof MultipleHighDensityRouteStitchSolver> | PipelineStep$3<typeof TraceSimplificationSolver> | PipelineStep$3<typeof TraceWidthSolver>)[];
|
|
4845
|
+
constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$3);
|
|
4846
|
+
getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$3];
|
|
4845
4847
|
currentPipelineStepIndex: number;
|
|
4846
4848
|
_step(): void;
|
|
4847
4849
|
solveUntilPhase(phase: string): void;
|
|
@@ -5067,7 +5069,7 @@ declare class MultipleHighDensityRouteStitchSolver3 extends BaseSolver {
|
|
|
5067
5069
|
visualize(): GraphicsObject;
|
|
5068
5070
|
}
|
|
5069
5071
|
|
|
5070
|
-
interface CapacityMeshSolverOptions$
|
|
5072
|
+
interface CapacityMeshSolverOptions$2 {
|
|
5071
5073
|
capacityDepth?: number;
|
|
5072
5074
|
targetMinCapacity?: number;
|
|
5073
5075
|
cacheProvider?: CacheProvider | null;
|
|
@@ -5076,8 +5078,8 @@ interface CapacityMeshSolverOptions$1 {
|
|
|
5076
5078
|
maxNodeRatio?: number;
|
|
5077
5079
|
minNodeArea?: number;
|
|
5078
5080
|
}
|
|
5079
|
-
type AutoroutingPipelineSolverOptions$1 = CapacityMeshSolverOptions$
|
|
5080
|
-
type PipelineStep$
|
|
5081
|
+
type AutoroutingPipelineSolverOptions$1 = CapacityMeshSolverOptions$2;
|
|
5082
|
+
type PipelineStep$2<T extends new (...args: any[]) => BaseSolver> = {
|
|
5081
5083
|
solverName: string;
|
|
5082
5084
|
solverClass: T;
|
|
5083
5085
|
getConstructorParams: (instance: AutoroutingPipelineSolver4_TinyHypergraph) => ConstructorParameters<T>;
|
|
@@ -5085,7 +5087,7 @@ type PipelineStep$1<T extends new (...args: any[]) => BaseSolver> = {
|
|
|
5085
5087
|
};
|
|
5086
5088
|
declare class AutoroutingPipelineSolver4_TinyHypergraph extends BaseSolver {
|
|
5087
5089
|
readonly srj: SimpleRouteJson;
|
|
5088
|
-
readonly opts: CapacityMeshSolverOptions$
|
|
5090
|
+
readonly opts: CapacityMeshSolverOptions$2;
|
|
5089
5091
|
escapeViaLocationSolver?: EscapeViaLocationSolver;
|
|
5090
5092
|
netToPointPairsSolver?: NetToPointPairsSolver;
|
|
5091
5093
|
nodeSolver?: RectDiffPipeline;
|
|
@@ -5126,9 +5128,9 @@ declare class AutoroutingPipelineSolver4_TinyHypergraph extends BaseSolver {
|
|
|
5126
5128
|
capacityEdges: CapacityMeshEdge[] | null;
|
|
5127
5129
|
highDensityNodePortPoints?: NodeWithPortPoints[];
|
|
5128
5130
|
cacheProvider: CacheProvider | null;
|
|
5129
|
-
pipelineDef: (PipelineStep$
|
|
5130
|
-
constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$
|
|
5131
|
-
getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$
|
|
5131
|
+
pipelineDef: (PipelineStep$2<typeof EscapeViaLocationSolver> | PipelineStep$2<typeof NetToPointPairsSolver2_OffBoardConnection> | PipelineStep$2<typeof RectDiffPipeline> | 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>)[];
|
|
5132
|
+
constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$2);
|
|
5133
|
+
getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$2];
|
|
5132
5134
|
currentPipelineStepIndex: number;
|
|
5133
5135
|
_step(): void;
|
|
5134
5136
|
solveUntilPhase(phase: string): void;
|
|
@@ -5154,6 +5156,273 @@ declare class AutoroutingPipelineSolver5_HdCache extends AutoroutingPipelineSolv
|
|
|
5154
5156
|
solve(): void;
|
|
5155
5157
|
}
|
|
5156
5158
|
|
|
5159
|
+
type Point$1 = {
|
|
5160
|
+
x: number;
|
|
5161
|
+
y: number;
|
|
5162
|
+
};
|
|
5163
|
+
type Matrix3x3 = [
|
|
5164
|
+
number,
|
|
5165
|
+
number,
|
|
5166
|
+
number,
|
|
5167
|
+
number,
|
|
5168
|
+
number,
|
|
5169
|
+
number,
|
|
5170
|
+
number,
|
|
5171
|
+
number,
|
|
5172
|
+
number
|
|
5173
|
+
];
|
|
5174
|
+
type ProjectedRect = {
|
|
5175
|
+
center: Point$1;
|
|
5176
|
+
width: number;
|
|
5177
|
+
height: number;
|
|
5178
|
+
innerWidth: number;
|
|
5179
|
+
innerHeight: number;
|
|
5180
|
+
ccwRotationDegrees: number;
|
|
5181
|
+
ccwRotationRadians: number;
|
|
5182
|
+
polygonArea: number;
|
|
5183
|
+
equivalentAreaExpansionFactor: number;
|
|
5184
|
+
targetQuad: [Point$1, Point$1, Point$1, Point$1];
|
|
5185
|
+
rectToPolygonMatrix: Matrix3x3;
|
|
5186
|
+
polygonToRectMatrix: Matrix3x3;
|
|
5187
|
+
};
|
|
5188
|
+
|
|
5189
|
+
type PolyPortPoint = PortPoint & {
|
|
5190
|
+
originalPoint?: Point$1;
|
|
5191
|
+
projectedPoint?: Point$1;
|
|
5192
|
+
};
|
|
5193
|
+
type PolyNodeWithPortPoints = Omit<NodeWithPortPoints, "portPoints"> & {
|
|
5194
|
+
polygon: Point$1[];
|
|
5195
|
+
portPoints: PolyPortPoint[];
|
|
5196
|
+
projectedRect?: ProjectedRect;
|
|
5197
|
+
};
|
|
5198
|
+
|
|
5199
|
+
declare class AttachProjectedRectsSolver extends BaseSolver {
|
|
5200
|
+
params: {
|
|
5201
|
+
nodesWithPortPoints: PolyNodeWithPortPoints[];
|
|
5202
|
+
equivalentAreaExpansionFactor?: number;
|
|
5203
|
+
};
|
|
5204
|
+
getSolverName(): string;
|
|
5205
|
+
outputNodes: PolyNodeWithPortPoints[];
|
|
5206
|
+
constructor(params: {
|
|
5207
|
+
nodesWithPortPoints: PolyNodeWithPortPoints[];
|
|
5208
|
+
equivalentAreaExpansionFactor?: number;
|
|
5209
|
+
});
|
|
5210
|
+
_step(): void;
|
|
5211
|
+
getOutput(): PolyNodeWithPortPoints[];
|
|
5212
|
+
getConstructorParams(): readonly [{
|
|
5213
|
+
nodesWithPortPoints: PolyNodeWithPortPoints[];
|
|
5214
|
+
equivalentAreaExpansionFactor?: number;
|
|
5215
|
+
}];
|
|
5216
|
+
visualize(): GraphicsObject;
|
|
5217
|
+
}
|
|
5218
|
+
|
|
5219
|
+
type ProjectedPortRecord = {
|
|
5220
|
+
projected: PortPoint;
|
|
5221
|
+
original: PortPoint;
|
|
5222
|
+
};
|
|
5223
|
+
declare class PolySingleIntraNodeSolver extends BaseSolver {
|
|
5224
|
+
params: {
|
|
5225
|
+
nodeWithPortPoints: PolyNodeWithPortPoints;
|
|
5226
|
+
colorMap?: Record<string, string>;
|
|
5227
|
+
connMap?: ConnectivityMap;
|
|
5228
|
+
viaDiameter?: number;
|
|
5229
|
+
traceWidth?: number;
|
|
5230
|
+
obstacleMargin?: number;
|
|
5231
|
+
effort?: number;
|
|
5232
|
+
};
|
|
5233
|
+
getSolverName(): string;
|
|
5234
|
+
highDensitySolver: HyperSingleIntraNodeSolver;
|
|
5235
|
+
projectedNode: NodeWithPortPoints;
|
|
5236
|
+
solvedRoutes: HighDensityIntraNodeRoute$1[];
|
|
5237
|
+
projectedPorts: ProjectedPortRecord[];
|
|
5238
|
+
constructor(params: {
|
|
5239
|
+
nodeWithPortPoints: PolyNodeWithPortPoints;
|
|
5240
|
+
colorMap?: Record<string, string>;
|
|
5241
|
+
connMap?: ConnectivityMap;
|
|
5242
|
+
viaDiameter?: number;
|
|
5243
|
+
traceWidth?: number;
|
|
5244
|
+
obstacleMargin?: number;
|
|
5245
|
+
effort?: number;
|
|
5246
|
+
});
|
|
5247
|
+
_step(): void;
|
|
5248
|
+
getConstructorParams(): readonly [{
|
|
5249
|
+
nodeWithPortPoints: PolyNodeWithPortPoints;
|
|
5250
|
+
colorMap?: Record<string, string>;
|
|
5251
|
+
connMap?: ConnectivityMap;
|
|
5252
|
+
viaDiameter?: number;
|
|
5253
|
+
traceWidth?: number;
|
|
5254
|
+
obstacleMargin?: number;
|
|
5255
|
+
effort?: number;
|
|
5256
|
+
}];
|
|
5257
|
+
visualize(): GraphicsObject;
|
|
5258
|
+
}
|
|
5259
|
+
|
|
5260
|
+
declare class PolyHighDensitySolver extends BaseSolver {
|
|
5261
|
+
getSolverName(): string;
|
|
5262
|
+
unsolvedNodePortPoints: PolyNodeWithPortPoints[];
|
|
5263
|
+
nodePortPoints: PolyNodeWithPortPoints[];
|
|
5264
|
+
routes: HighDensityIntraNodeRoute$1[];
|
|
5265
|
+
routesByNodeId: Map<string, HighDensityIntraNodeRoute$1[]>;
|
|
5266
|
+
failedSolvers: PolySingleIntraNodeSolver[];
|
|
5267
|
+
activeSubSolver: PolySingleIntraNodeSolver | null;
|
|
5268
|
+
colorMap: Record<string, string>;
|
|
5269
|
+
connMap?: ConnectivityMap;
|
|
5270
|
+
viaDiameter: number;
|
|
5271
|
+
traceWidth: number;
|
|
5272
|
+
obstacleMargin: number;
|
|
5273
|
+
effort: number;
|
|
5274
|
+
nodePfById: Map<CapacityMeshNodeId, number | null>;
|
|
5275
|
+
constructor({ nodePortPoints, colorMap, connMap, viaDiameter, traceWidth, obstacleMargin, effort, nodePfById, }: {
|
|
5276
|
+
nodePortPoints: PolyNodeWithPortPoints[];
|
|
5277
|
+
colorMap?: Record<string, string>;
|
|
5278
|
+
connMap?: ConnectivityMap;
|
|
5279
|
+
viaDiameter?: number;
|
|
5280
|
+
traceWidth?: number;
|
|
5281
|
+
obstacleMargin?: number;
|
|
5282
|
+
effort?: number;
|
|
5283
|
+
nodePfById?: Map<CapacityMeshNodeId, number | null> | Record<string, number | null>;
|
|
5284
|
+
});
|
|
5285
|
+
_step(): void;
|
|
5286
|
+
computeProgress(): number;
|
|
5287
|
+
getConstructorParams(): readonly [{
|
|
5288
|
+
readonly nodePortPoints: PolyNodeWithPortPoints[];
|
|
5289
|
+
readonly colorMap: Record<string, string>;
|
|
5290
|
+
readonly connMap: ConnectivityMap | undefined;
|
|
5291
|
+
readonly viaDiameter: number;
|
|
5292
|
+
readonly traceWidth: number;
|
|
5293
|
+
readonly obstacleMargin: number;
|
|
5294
|
+
readonly effort: number;
|
|
5295
|
+
readonly nodePfById: Map<string, number | null>;
|
|
5296
|
+
}];
|
|
5297
|
+
visualize(): GraphicsObject;
|
|
5298
|
+
}
|
|
5299
|
+
|
|
5300
|
+
type PolyHypergraphPortPointPathingSolverOptions = {
|
|
5301
|
+
srj: SimpleRouteJson;
|
|
5302
|
+
effort?: number;
|
|
5303
|
+
concavityTolerance?: number;
|
|
5304
|
+
layerMergeMode?: LayerMergeMode;
|
|
5305
|
+
portSpacing?: number;
|
|
5306
|
+
portMarginFromSegmentEndpoint?: number;
|
|
5307
|
+
useConstrainedDelaunay?: boolean;
|
|
5308
|
+
usePolyanyaMerge?: boolean;
|
|
5309
|
+
viaSegments?: number;
|
|
5310
|
+
};
|
|
5311
|
+
declare class PolyHypergraphPortPointPathingSolver extends BaseSolver {
|
|
5312
|
+
params: PolyHypergraphPortPointPathingSolverOptions;
|
|
5313
|
+
getSolverName(): string;
|
|
5314
|
+
convexRegions: ConvexRegionsComputeResult;
|
|
5315
|
+
serializedGraph: SerializedPolyHyperGraph;
|
|
5316
|
+
loaded: PolyHyperGraphLoadResult;
|
|
5317
|
+
polySolver: PolyHyperGraphSolver;
|
|
5318
|
+
inputNodeWithPortPoints: InputNodeWithPortPoints[];
|
|
5319
|
+
nodesWithPortPoints: PolyNodeWithPortPoints[];
|
|
5320
|
+
reservedRegionCount: number;
|
|
5321
|
+
clearance: number;
|
|
5322
|
+
effort: number;
|
|
5323
|
+
constructor(params: PolyHypergraphPortPointPathingSolverOptions);
|
|
5324
|
+
private createInputNodesWithPortPoints;
|
|
5325
|
+
private createAssignedPortPoint;
|
|
5326
|
+
private buildOutputNodes;
|
|
5327
|
+
_step(): void;
|
|
5328
|
+
getOutput(): {
|
|
5329
|
+
nodesWithPortPoints: PolyNodeWithPortPoints[];
|
|
5330
|
+
inputNodeWithPortPoints: InputNodeWithPortPoints[];
|
|
5331
|
+
};
|
|
5332
|
+
computeNodePf(node: InputNodeWithPortPoints): number | null;
|
|
5333
|
+
getConstructorParams(): readonly [PolyHypergraphPortPointPathingSolverOptions];
|
|
5334
|
+
preview(): GraphicsObject;
|
|
5335
|
+
visualize(): GraphicsObject;
|
|
5336
|
+
}
|
|
5337
|
+
|
|
5338
|
+
declare class ProjectHighDensityToPolygonSolver extends BaseSolver {
|
|
5339
|
+
getSolverName(): string;
|
|
5340
|
+
routes: HighDensityIntraNodeRoute$1[];
|
|
5341
|
+
routesByNodeId: Map<string, HighDensityIntraNodeRoute$1[]>;
|
|
5342
|
+
colorMap: Record<string, string>;
|
|
5343
|
+
nodePortPoints: PolyNodeWithPortPoints[];
|
|
5344
|
+
rawRoutesByNodeId: Map<CapacityMeshNodeId, HighDensityIntraNodeRoute$1[]>;
|
|
5345
|
+
constructor({ nodePortPoints, routesByNodeId, colorMap, }: {
|
|
5346
|
+
nodePortPoints: PolyNodeWithPortPoints[];
|
|
5347
|
+
routesByNodeId: Map<CapacityMeshNodeId, HighDensityIntraNodeRoute$1[]> | Record<string, HighDensityIntraNodeRoute$1[]>;
|
|
5348
|
+
colorMap?: Record<string, string>;
|
|
5349
|
+
});
|
|
5350
|
+
_step(): void;
|
|
5351
|
+
getOutput(): HighDensityIntraNodeRoute$1[];
|
|
5352
|
+
getConstructorParams(): readonly [{
|
|
5353
|
+
readonly nodePortPoints: PolyNodeWithPortPoints[];
|
|
5354
|
+
readonly routesByNodeId: Map<string, HighDensityIntraNodeRoute$1[]>;
|
|
5355
|
+
readonly colorMap: Record<string, string>;
|
|
5356
|
+
}];
|
|
5357
|
+
visualize(): GraphicsObject;
|
|
5358
|
+
}
|
|
5359
|
+
|
|
5360
|
+
interface CapacityMeshSolverOptions$1 {
|
|
5361
|
+
capacityDepth?: number;
|
|
5362
|
+
targetMinCapacity?: number;
|
|
5363
|
+
cacheProvider?: CacheProvider | null;
|
|
5364
|
+
effort?: number;
|
|
5365
|
+
maxNodeDimension?: number;
|
|
5366
|
+
maxNodeRatio?: number;
|
|
5367
|
+
minNodeArea?: number;
|
|
5368
|
+
equivalentAreaExpansionFactor?: number;
|
|
5369
|
+
polyConcavityTolerance?: number;
|
|
5370
|
+
polyPortSpacing?: number;
|
|
5371
|
+
polyPortMarginFromSegmentEndpoint?: number;
|
|
5372
|
+
}
|
|
5373
|
+
type PipelineStep$1<T extends new (...args: any[]) => BaseSolver> = {
|
|
5374
|
+
solverName: string;
|
|
5375
|
+
solverClass: T;
|
|
5376
|
+
getConstructorParams: (instance: AutoroutingPipelineSolver6_PolyHypergraph) => ConstructorParameters<T>;
|
|
5377
|
+
onSolved?: (instance: AutoroutingPipelineSolver6_PolyHypergraph) => void;
|
|
5378
|
+
};
|
|
5379
|
+
declare class AutoroutingPipelineSolver6_PolyHypergraph extends BaseSolver {
|
|
5380
|
+
readonly srj: SimpleRouteJson;
|
|
5381
|
+
readonly opts: CapacityMeshSolverOptions$1;
|
|
5382
|
+
escapeViaLocationSolver?: EscapeViaLocationSolver;
|
|
5383
|
+
netToPointPairsSolver?: NetToPointPairsSolver;
|
|
5384
|
+
polyGraphSolver?: PolyHypergraphPortPointPathingSolver;
|
|
5385
|
+
attachProjectedRectsSolver?: AttachProjectedRectsSolver;
|
|
5386
|
+
highDensityRouteSolver?: PolyHighDensitySolver;
|
|
5387
|
+
projectHighDensityToPolgonSolver?: ProjectHighDensityToPolygonSolver;
|
|
5388
|
+
highDensityStitchSolver?: MultipleHighDensityRouteStitchSolver3;
|
|
5389
|
+
traceSimplificationSolver?: TraceSimplificationSolver;
|
|
5390
|
+
traceWidthSolver?: TraceWidthSolver;
|
|
5391
|
+
globalDrcForceImproveSolver?: GlobalDrcForceImproveSolver;
|
|
5392
|
+
colorMap: Record<string, string>;
|
|
5393
|
+
viaDiameter: number;
|
|
5394
|
+
viaHoleDiameter: number;
|
|
5395
|
+
minTraceWidth: number;
|
|
5396
|
+
effort: number;
|
|
5397
|
+
maxNodeDimension: number;
|
|
5398
|
+
maxNodeRatio: number;
|
|
5399
|
+
minNodeArea: number;
|
|
5400
|
+
equivalentAreaExpansionFactor: number;
|
|
5401
|
+
startTimeOfPhase: Record<string, number>;
|
|
5402
|
+
endTimeOfPhase: Record<string, number>;
|
|
5403
|
+
timeSpentOnPhase: Record<string, number>;
|
|
5404
|
+
activeSubSolver?: BaseSolver | null;
|
|
5405
|
+
connMap: ConnectivityMap;
|
|
5406
|
+
srjWithEscapeViaLocations?: SimpleRouteJson;
|
|
5407
|
+
srjWithPointPairs?: SimpleRouteJson;
|
|
5408
|
+
highDensityNodePortPoints?: PolyNodeWithPortPoints[];
|
|
5409
|
+
projectedHighDensityNodePortPoints?: PolyNodeWithPortPoints[];
|
|
5410
|
+
cacheProvider: CacheProvider | null;
|
|
5411
|
+
pipelineDef: (PipelineStep$1<typeof EscapeViaLocationSolver> | PipelineStep$1<typeof NetToPointPairsSolver2_OffBoardConnection> | PipelineStep$1<typeof PolyHypergraphPortPointPathingSolver> | PipelineStep$1<typeof AttachProjectedRectsSolver> | PipelineStep$1<typeof PolyHighDensitySolver> | PipelineStep$1<typeof ProjectHighDensityToPolygonSolver> | PipelineStep$1<typeof MultipleHighDensityRouteStitchSolver3> | PipelineStep$1<typeof TraceSimplificationSolver> | PipelineStep$1<typeof TraceWidthSolver> | PipelineStep$1<typeof GlobalDrcForceImproveSolver>)[];
|
|
5412
|
+
constructor(srj: SimpleRouteJson, opts?: CapacityMeshSolverOptions$1);
|
|
5413
|
+
getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$1];
|
|
5414
|
+
currentPipelineStepIndex: number;
|
|
5415
|
+
_step(): void;
|
|
5416
|
+
solveUntilPhase(phase: string): void;
|
|
5417
|
+
getCurrentPhase(): string;
|
|
5418
|
+
private getProblemVisualization;
|
|
5419
|
+
visualize(): GraphicsObject;
|
|
5420
|
+
preview(): GraphicsObject;
|
|
5421
|
+
_getOutputHdRoutes(): HighDensityRoute$1[];
|
|
5422
|
+
getOutputSimplifiedPcbTraces(): SimplifiedPcbTraces;
|
|
5423
|
+
getOutputSimpleRouteJson(): SimpleRouteJson;
|
|
5424
|
+
}
|
|
5425
|
+
|
|
5157
5426
|
/**
|
|
5158
5427
|
* Calculate the capacity of a node based on its width
|
|
5159
5428
|
*
|
|
@@ -5775,7 +6044,7 @@ declare const convertSrjToGraphicsObject: (srj: SimpleRouteJson) => {
|
|
|
5775
6044
|
rects: Rect[];
|
|
5776
6045
|
circles: Circle[];
|
|
5777
6046
|
lines: Line[];
|
|
5778
|
-
points: Point$
|
|
6047
|
+
points: Point$7[];
|
|
5779
6048
|
};
|
|
5780
6049
|
|
|
5781
6050
|
type FutureConnection = {
|
|
@@ -6196,4 +6465,4 @@ declare class IntraNodeSolverWithJumpers extends BaseSolver {
|
|
|
6196
6465
|
visualize(): GraphicsObject;
|
|
6197
6466
|
}
|
|
6198
6467
|
|
|
6199
|
-
export { AssignableAutoroutingPipeline1Solver, AssignableAutoroutingPipeline2, AssignableAutoroutingPipeline3, AutoroutingPipeline1_OriginalUnravel, AutoroutingPipelineSolver4_TinyHypergraph as AutoroutingPipelineSolver, AutoroutingPipelineSolver2_PortPointPathing, AutoroutingPipelineSolver3_HgPortPointPathing, AutoroutingPipelineSolver4_TinyHypergraph as AutoroutingPipelineSolver4, AutoroutingPipelineSolver4_TinyHypergraph, AutoroutingPipelineSolver5_HdCache as AutoroutingPipelineSolver5, AutoroutingPipelineSolver5_HdCache, 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 };
|
|
6468
|
+
export { AssignableAutoroutingPipeline1Solver, AssignableAutoroutingPipeline2, AssignableAutoroutingPipeline3, AttachProjectedRectsSolver, AutoroutingPipeline1_OriginalUnravel, AutoroutingPipelineSolver4_TinyHypergraph as AutoroutingPipelineSolver, AutoroutingPipelineSolver2_PortPointPathing, AutoroutingPipelineSolver3_HgPortPointPathing, AutoroutingPipelineSolver4_TinyHypergraph as AutoroutingPipelineSolver4, AutoroutingPipelineSolver4_TinyHypergraph, AutoroutingPipelineSolver5_HdCache as AutoroutingPipelineSolver5, AutoroutingPipelineSolver5_HdCache, AutoroutingPipelineSolver6_PolyHypergraph as AutoroutingPipelineSolver6, AutoroutingPipelineSolver6_PolyHypergraph, type AutoroutingPipelineSolverOptions, type CachableSolver, type CacheProvider, CapacityMeshSolver, CurvyIntraNodeSolver, type HighDensityIntraNodeRouteWithJumpers, JumperHighDensitySolver as HighDensitySolver, HyperSingleIntraNodeSolver, InMemoryCache, IntraNodeSolverWithJumpers, type Jumper, LocalStorageCache, PolyHighDensitySolver, PolySingleIntraNodeSolver as PolyIntraNodeSolver, PolySingleIntraNodeSolver, ProjectHighDensityToPolygonSolver, SingleHighDensityRouteWithJumpersSolver, calculateOptimalCapacityDepth, convertSrjToGraphicsObject, getGlobalInMemoryCache, getGlobalLocalStorageCache, getTunedTotalCapacity1, setupGlobalCaches };
|