@tscircuit/capacity-autorouter 0.0.784 → 0.0.786
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 +29 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -4863,6 +4863,8 @@ interface HgPortPointPathingSolverParams {
|
|
|
4863
4863
|
FORCE_CENTER_FIRST: boolean;
|
|
4864
4864
|
RIPPING_ENABLED: boolean;
|
|
4865
4865
|
USE_SELECTIVE_RERIP_ROUTING?: boolean;
|
|
4866
|
+
/** Count preloaded assignments when applying partial-rip scale bounds. */
|
|
4867
|
+
USE_PARTIAL_RIP_ROUTING_WITH_PRELOADED_TRACES?: boolean;
|
|
4866
4868
|
};
|
|
4867
4869
|
weights: {
|
|
4868
4870
|
/** Seed used for deterministic shuffling in rip-selection ordering. */
|
|
@@ -5045,6 +5047,33 @@ declare class TinyHypergraphPortPointPathingSolver extends BaseSolver {
|
|
|
5045
5047
|
private rootConnectionNameByConnectionId;
|
|
5046
5048
|
constructor(params: HgPortPointPathingSolverParams);
|
|
5047
5049
|
getSolverName(): string;
|
|
5050
|
+
getSolveGraphBenchmarkMetrics(): {
|
|
5051
|
+
routeCount: number;
|
|
5052
|
+
iterations: number;
|
|
5053
|
+
timeMs: number;
|
|
5054
|
+
ripCount: any;
|
|
5055
|
+
partialRipCount: any;
|
|
5056
|
+
partiallyRippedRouteCount: any;
|
|
5057
|
+
partiallyRippedSegmentCount: any;
|
|
5058
|
+
retainedPartialRipSegmentCount: any;
|
|
5059
|
+
firstMaxRegionCost: any;
|
|
5060
|
+
bestMaxRegionCost: any;
|
|
5061
|
+
firstTotalRegionCost: any;
|
|
5062
|
+
bestTotalRegionCost: any;
|
|
5063
|
+
firstSegmentCount: any;
|
|
5064
|
+
bestSolvedSegmentCount: any;
|
|
5065
|
+
bestSolvedMaxRegionSegmentCount: any;
|
|
5066
|
+
bestSolvedSquaredRegionSegmentCount: any;
|
|
5067
|
+
finalMaxRegionSegmentCount: number;
|
|
5068
|
+
finalSquaredRegionSegmentCount: number;
|
|
5069
|
+
warmupFullRipAttempts: any;
|
|
5070
|
+
complexityAwareSelection: any;
|
|
5071
|
+
targetReached: any;
|
|
5072
|
+
outsideInCompletedRouteCount: any;
|
|
5073
|
+
outsideInFallbackRouteCount: any;
|
|
5074
|
+
outsideInForwardExpansionCount: any;
|
|
5075
|
+
outsideInReverseExpansionCount: any;
|
|
5076
|
+
} | undefined;
|
|
5048
5077
|
_step(): void;
|
|
5049
5078
|
preview(): GraphicsObject;
|
|
5050
5079
|
private getCurrentTinySolver;
|