@tscircuit/capacity-autorouter 0.0.332 → 0.0.333
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 +3 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import * as graphics_debug from 'graphics-debug';
|
|
|
4
4
|
import { GraphicsObject, Rect, Circle, Line, Point as Point$5 } from 'graphics-debug';
|
|
5
5
|
import { BaseSolver as BaseSolver$1 } from '@tscircuit/solver-utils';
|
|
6
6
|
import Flatbush from 'flatbush';
|
|
7
|
-
import {
|
|
7
|
+
import { HighDensitySolverA03, NodeWithPortPoints as NodeWithPortPoints$1 } from '@tscircuit/high-density-a01';
|
|
8
8
|
import { ViaGraphSolver, ViaByNet, JumperGraphSolver, JRegion, JPort, Region, RegionPortAssignment, RegionPort, Connection, SolvedRoute, Candidate as Candidate$3, HyperGraph, HyperGraphSolver } from '@tscircuit/hypergraph';
|
|
9
9
|
import { Point3, Polygon } from '@tscircuit/math-utils';
|
|
10
10
|
import { CurvyTraceSolver } from '@tscircuit/curvy-trace-solver';
|
|
@@ -1525,7 +1525,7 @@ declare class FixedTopologyHighDensityIntraNodeSolver extends BaseSolver {
|
|
|
1525
1525
|
visualize(): graphics_debug.GraphicsObject;
|
|
1526
1526
|
}
|
|
1527
1527
|
|
|
1528
|
-
declare class HyperSingleIntraNodeSolver extends HyperParameterSupervisorSolver<IntraNodeRouteSolver | TwoCrossingRoutesHighDensitySolver | SingleTransitionCrossingRouteSolver | SingleTransitionIntraNodeSolver | FixedTopologyHighDensityIntraNodeSolver |
|
|
1528
|
+
declare class HyperSingleIntraNodeSolver extends HyperParameterSupervisorSolver<IntraNodeRouteSolver | TwoCrossingRoutesHighDensitySolver | SingleTransitionCrossingRouteSolver | SingleTransitionIntraNodeSolver | FixedTopologyHighDensityIntraNodeSolver | HighDensitySolverA03> {
|
|
1529
1529
|
getSolverName(): string;
|
|
1530
1530
|
constructorParams: ConstructorParameters<typeof CachedIntraNodeRouteSolver>[0];
|
|
1531
1531
|
solvedRoutes: HighDensityIntraNodeRoute$1[];
|
|
@@ -1605,7 +1605,7 @@ declare class HyperSingleIntraNodeSolver extends HyperParameterSupervisorSolver<
|
|
|
1605
1605
|
} | {
|
|
1606
1606
|
name: string;
|
|
1607
1607
|
possibleValues: {
|
|
1608
|
-
|
|
1608
|
+
HIGH_DENSITY_A03: boolean;
|
|
1609
1609
|
}[];
|
|
1610
1610
|
})[];
|
|
1611
1611
|
computeG(solver: IntraNodeRouteSolver): number;
|