@tscircuit/capacity-autorouter 0.0.871 → 0.0.873
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 +7 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6021,6 +6021,7 @@ declare class AutoroutingPipelineSolver7_MultiGraph extends BaseSolver {
|
|
|
6021
6021
|
private setSimpleRouteJson;
|
|
6022
6022
|
getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$3];
|
|
6023
6023
|
currentPipelineStepIndex: number;
|
|
6024
|
+
computeProgress(): number;
|
|
6024
6025
|
_step(): void;
|
|
6025
6026
|
solveUntilPhase(phase: string): void;
|
|
6026
6027
|
getCurrentPhase(): string;
|
|
@@ -6358,7 +6359,12 @@ declare class Pipeline9JointDrcRepairSolver extends BaseSolver {
|
|
|
6358
6359
|
private cachedReferenceDrcEvaluator?;
|
|
6359
6360
|
private referenceDrcValidationCount;
|
|
6360
6361
|
private referenceDrcFalseNegativeCount;
|
|
6362
|
+
private indexedDrcEvaluationCount;
|
|
6363
|
+
private indexedDrcCacheHitCount;
|
|
6364
|
+
private indexedDrcEvaluationTimeMs;
|
|
6365
|
+
private readonly indexedDrcCandidateCache;
|
|
6361
6366
|
private combinedOutput?;
|
|
6367
|
+
private cacheIndexedDrcResult;
|
|
6362
6368
|
constructor(params: Pipeline9JointDrcRepairSolverParams);
|
|
6363
6369
|
getSolverName(): string;
|
|
6364
6370
|
_step(): void;
|
|
@@ -6472,6 +6478,7 @@ declare class AutoroutingPipelineSolver9_PreloadedTraceGraph extends BaseSolver
|
|
|
6472
6478
|
private setSimpleRouteJson;
|
|
6473
6479
|
getConstructorParams(): readonly [SimpleRouteJson, CapacityMeshSolverOptions$1];
|
|
6474
6480
|
currentPipelineStepIndex: number;
|
|
6481
|
+
computeProgress(): number;
|
|
6475
6482
|
_step(): void;
|
|
6476
6483
|
solveUntilPhase(phase: string): void;
|
|
6477
6484
|
getCurrentPhase(): string;
|