@tscircuit/capacity-autorouter 0.0.320 → 0.0.323
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 +4 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4452,6 +4452,7 @@ declare class SingleTargetNecessaryCrampedPortPointSolver extends BaseSolver$1 {
|
|
|
4452
4452
|
getSolverName(): string;
|
|
4453
4453
|
_setup(): void;
|
|
4454
4454
|
_step(): void;
|
|
4455
|
+
private getCandidateCost;
|
|
4455
4456
|
getOutput(): ExploredPortPoint[];
|
|
4456
4457
|
visualize(): GraphicsObject;
|
|
4457
4458
|
}
|
|
@@ -4701,12 +4702,13 @@ declare class AutoroutingPipelineSolver3_HgPortPointPathing extends BaseSolver {
|
|
|
4701
4702
|
* This capacity corresponds to how many vias the node can fit, tuned for two
|
|
4702
4703
|
* layers.
|
|
4703
4704
|
*
|
|
4704
|
-
* @param
|
|
4705
|
+
* @param node The node or width to calculate capacity for
|
|
4705
4706
|
* @param maxCapacityFactor Optional multiplier to adjust capacity
|
|
4706
4707
|
* @returns The calculated capacity
|
|
4707
4708
|
*/
|
|
4708
|
-
declare const getTunedTotalCapacity1: (
|
|
4709
|
+
declare const getTunedTotalCapacity1: (node: CapacityMeshNode | {
|
|
4709
4710
|
width: number;
|
|
4711
|
+
height?: number;
|
|
4710
4712
|
availableZ?: number[];
|
|
4711
4713
|
}, maxCapacityFactor?: number, opts?: {
|
|
4712
4714
|
viaDiameter?: number;
|