@tscircuit/capacity-autorouter 0.0.361 → 0.0.363
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 -3
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -5,9 +5,10 @@ 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 {
|
|
8
|
+
import { FixedViaHypergraphSolver, ViaByNet } from '@tscircuit/fixed-via-hypergraph-solver/lib/index';
|
|
9
9
|
import { Point3, Polygon } from '@tscircuit/math-utils';
|
|
10
10
|
import { CurvyTraceSolver } from '@tscircuit/curvy-trace-solver';
|
|
11
|
+
import { JumperGraphSolver, JRegion, JPort, Region, RegionPortAssignment, RegionPort, Connection, SolvedRoute, Candidate as Candidate$3, HyperGraph, HyperGraphSolver, HyperGraphSectionOptimizer } from '@tscircuit/hypergraph';
|
|
11
12
|
import { ConnectivityMap as ConnectivityMap$1 } from 'connectivity-map';
|
|
12
13
|
|
|
13
14
|
interface CacheProvider {
|
|
@@ -1504,7 +1505,7 @@ declare class FixedTopologyHighDensityIntraNodeSolver extends BaseSolver {
|
|
|
1504
1505
|
traceWidth: number;
|
|
1505
1506
|
connMap?: ConnectivityMap;
|
|
1506
1507
|
rootConnectionNameByConnectionId: Map<string, string | undefined>;
|
|
1507
|
-
lastActiveSubSolver:
|
|
1508
|
+
lastActiveSubSolver: FixedViaHypergraphSolver | null;
|
|
1508
1509
|
solvedRoutes: HighDensityIntraNodeRouteWithVias[];
|
|
1509
1510
|
vias: ViaRegion[];
|
|
1510
1511
|
tiledViasByNet: ViaByNet;
|
|
@@ -1525,7 +1526,7 @@ declare class FixedTopologyHighDensityIntraNodeSolver extends BaseSolver {
|
|
|
1525
1526
|
private _processResults;
|
|
1526
1527
|
getOutput(): HighDensityIntraNodeRouteWithVias[];
|
|
1527
1528
|
getOutputVias(): ViaRegion[];
|
|
1528
|
-
visualize():
|
|
1529
|
+
visualize(): GraphicsObject;
|
|
1529
1530
|
}
|
|
1530
1531
|
|
|
1531
1532
|
declare class HyperSingleIntraNodeSolver extends HyperParameterSupervisorSolver<IntraNodeRouteSolver | TwoCrossingRoutesHighDensitySolver | SingleTransitionCrossingRouteSolver | SingleTransitionIntraNodeSolver | FixedTopologyHighDensityIntraNodeSolver | HighDensitySolverA03> {
|