@tscircuit/capacity-autorouter 0.0.329 → 0.0.331

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 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 { HighDensitySolverA02, NodeWithPortPoints as NodeWithPortPoints$1 } from '@tscircuit/high-density-a01';
8
- import { ViaTile, 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 } 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';
@@ -1486,7 +1486,6 @@ interface FixedTopologyHighDensityIntraNodeSolverParams {
1486
1486
  nodeWithPortPoints: NodeWithPortPoints;
1487
1487
  colorMap?: Record<string, string>;
1488
1488
  traceWidth?: number;
1489
- viaDiameter?: number;
1490
1489
  connMap?: ConnectivityMap;
1491
1490
  effort?: number;
1492
1491
  }
@@ -1500,8 +1499,6 @@ declare class FixedTopologyHighDensityIntraNodeSolver extends BaseSolver {
1500
1499
  nodeWithPortPoints: NodeWithPortPoints;
1501
1500
  colorMap: Record<string, string>;
1502
1501
  traceWidth: number;
1503
- viaDiameter: number;
1504
- viaTile: ViaTile;
1505
1502
  connMap?: ConnectivityMap;
1506
1503
  rootConnectionNameByConnectionId: Map<string, string | undefined>;
1507
1504
  lastActiveSubSolver: ViaGraphSolver | null;
@@ -1511,7 +1508,6 @@ declare class FixedTopologyHighDensityIntraNodeSolver extends BaseSolver {
1511
1508
  constructor(params: FixedTopologyHighDensityIntraNodeSolverParams);
1512
1509
  getConstructorParams(): FixedTopologyHighDensityIntraNodeSolverParams;
1513
1510
  private _getViaTileDiameter;
1514
- private _resolveViaDiameter;
1515
1511
  private _initializeGraph;
1516
1512
  _step(): void;
1517
1513
  private _upsertGlobalVia;