@tscircuit/capacity-autorouter 0.0.743 → 0.0.744
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 +8 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -5796,19 +5796,24 @@ declare class PowerTraceExpansionSolver extends BaseSolver {
|
|
|
5796
5796
|
visualize(): GraphicsObject;
|
|
5797
5797
|
}
|
|
5798
5798
|
|
|
5799
|
+
type DifferentialPairPostProcessingSolverParams = PostProcessingSolverParams & {
|
|
5800
|
+
obstacleMargin?: number;
|
|
5801
|
+
};
|
|
5799
5802
|
/** Applies the post-processing algorithm implied by each pair's constraints. */
|
|
5800
5803
|
declare class DifferentialPairPostProcessingSolver extends BaseSolver {
|
|
5801
|
-
readonly inputProblem:
|
|
5804
|
+
readonly inputProblem: DifferentialPairPostProcessingSolverParams;
|
|
5802
5805
|
readonly lengthMatchingSolver?: LengthMatchingSolver;
|
|
5803
5806
|
postProcessingSolver?: PostProcessingSolver;
|
|
5804
5807
|
private readonly lengthOnlyPairs;
|
|
5805
5808
|
private readonly coupledPairs;
|
|
5806
5809
|
private phase;
|
|
5807
5810
|
private outputHdRoutes?;
|
|
5808
|
-
constructor(inputProblem:
|
|
5811
|
+
constructor(inputProblem: DifferentialPairPostProcessingSolverParams);
|
|
5809
5812
|
getSolverName(): string;
|
|
5810
5813
|
_step(): void;
|
|
5811
|
-
getConstructorParams(): [
|
|
5814
|
+
getConstructorParams(): [
|
|
5815
|
+
DifferentialPairPostProcessingSolverParams
|
|
5816
|
+
];
|
|
5812
5817
|
getOutput(): PostProcessingSolverOutput;
|
|
5813
5818
|
visualize(): GraphicsObject;
|
|
5814
5819
|
}
|