@tscircuit/capacity-autorouter 0.0.784 → 0.0.785

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
@@ -5045,6 +5045,33 @@ declare class TinyHypergraphPortPointPathingSolver extends BaseSolver {
5045
5045
  private rootConnectionNameByConnectionId;
5046
5046
  constructor(params: HgPortPointPathingSolverParams);
5047
5047
  getSolverName(): string;
5048
+ getSolveGraphBenchmarkMetrics(): {
5049
+ routeCount: number;
5050
+ iterations: number;
5051
+ timeMs: number;
5052
+ ripCount: any;
5053
+ partialRipCount: any;
5054
+ partiallyRippedRouteCount: any;
5055
+ partiallyRippedSegmentCount: any;
5056
+ retainedPartialRipSegmentCount: any;
5057
+ firstMaxRegionCost: any;
5058
+ bestMaxRegionCost: any;
5059
+ firstTotalRegionCost: any;
5060
+ bestTotalRegionCost: any;
5061
+ firstSegmentCount: any;
5062
+ bestSolvedSegmentCount: any;
5063
+ bestSolvedMaxRegionSegmentCount: any;
5064
+ bestSolvedSquaredRegionSegmentCount: any;
5065
+ finalMaxRegionSegmentCount: number;
5066
+ finalSquaredRegionSegmentCount: number;
5067
+ warmupFullRipAttempts: any;
5068
+ complexityAwareSelection: any;
5069
+ targetReached: any;
5070
+ outsideInCompletedRouteCount: any;
5071
+ outsideInFallbackRouteCount: any;
5072
+ outsideInForwardExpansionCount: any;
5073
+ outsideInReverseExpansionCount: any;
5074
+ } | undefined;
5048
5075
  _step(): void;
5049
5076
  preview(): GraphicsObject;
5050
5077
  private getCurrentTinySolver;