@tscircuit/capacity-autorouter 0.0.394 → 0.0.396

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
@@ -1084,6 +1084,7 @@ declare class SingleHighDensityRouteSolver extends BaseSolver {
1084
1084
  numRoutes: number;
1085
1085
  VIA_PENALTY_FACTOR: number;
1086
1086
  CELL_SIZE_FACTOR: number;
1087
+ NEARBY_SEGMENT_CLEARANCE: number;
1087
1088
  exploredNodes: Set<string>;
1088
1089
  candidates: SingleRouteCandidatePriorityQueue;
1089
1090
  connectionName: string;
@@ -1132,6 +1133,7 @@ declare class SingleHighDensityRouteSolver extends BaseSolver {
1132
1133
  futureConnections?: FutureConnection$1[];
1133
1134
  hyperParameters?: Partial<HighDensityHyperParameters>;
1134
1135
  connMap?: ConnectivityMap;
1136
+ nearbySegmentClearance?: number;
1135
1137
  });
1136
1138
  handleSimpleCases(): void;
1137
1139
  get viaPenaltyDistance(): number;
@@ -5196,6 +5198,7 @@ declare class SingleRouteUselessViaRemovalSolver extends BaseSolver {
5196
5198
  currentSectionIndex: number;
5197
5199
  TRACE_THICKNESS: number;
5198
5200
  OBSTACLE_MARGIN: number;
5201
+ ENDPOINT_LAYER_EPSILON: number;
5199
5202
  constructor(params: {
5200
5203
  obstacleSHI: ObstacleSpatialHashIndex;
5201
5204
  hdRouteSHI: HighDensityRouteSpatialIndex;