@tscircuit/capacity-autorouter 0.0.296 → 0.0.297
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 +3 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4358,6 +4358,7 @@ interface HgPortPointPathingSolverParams {
|
|
|
4358
4358
|
MAX_RIPS: number;
|
|
4359
4359
|
MIN_ALLOWED_BOARD_SCORE: number;
|
|
4360
4360
|
};
|
|
4361
|
+
layerCount: number;
|
|
4361
4362
|
}
|
|
4362
4363
|
declare class HgPortPointPathingSolver extends HyperGraphSolver<HgRegion, HgPort> {
|
|
4363
4364
|
inputNodes: InputNodeWithPortPoints[];
|
|
@@ -4386,7 +4387,8 @@ declare class HgPortPointPathingSolver extends HyperGraphSolver<HgRegion, HgPort
|
|
|
4386
4387
|
randomRipFraction: number;
|
|
4387
4388
|
maxRips: number;
|
|
4388
4389
|
MIN_ALLOWED_BOARD_SCORE: number;
|
|
4389
|
-
|
|
4390
|
+
layerCount: number;
|
|
4391
|
+
constructor({ inputGraph, inputConnections, connectionsWithResults, inputNodes, portPointMap, regionMemoryPfMap, rippingEnabled, weights, forceCenterFirst, layerCount, }: HgPortPointPathingSolverParams);
|
|
4390
4392
|
private clampPf;
|
|
4391
4393
|
private pfToFailureCost;
|
|
4392
4394
|
private recordRegionMemoryPf;
|