@tscircuit/capacity-autorouter 0.0.41 → 0.0.43

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 CHANGED
@@ -103,6 +103,7 @@ declare class BaseSolver {
103
103
  /** DO NOT OVERRIDE! Override _step() instead */
104
104
  step(): void;
105
105
  _step(): void;
106
+ getConstructorParams(): void;
106
107
  solve(): void;
107
108
  visualize(): GraphicsObject;
108
109
  /**
@@ -793,9 +794,13 @@ declare class HyperSingleIntraNodeSolver extends HyperParameterSupervisorSolver<
793
794
  }[];
794
795
  } | {
795
796
  name: string;
796
- possibleValues: {
797
+ possibleValues: ({
797
798
  CLOSED_FORM_TWO_TRACE_SAME_LAYER: boolean;
798
- }[];
799
+ CLOSED_FORM_TWO_TRACE_TRANSITION_CROSSING?: undefined;
800
+ } | {
801
+ CLOSED_FORM_TWO_TRACE_TRANSITION_CROSSING: boolean;
802
+ CLOSED_FORM_TWO_TRACE_SAME_LAYER?: undefined;
803
+ })[];
799
804
  })[];
800
805
  computeG(solver: IntraNodeRouteSolver): number;
801
806
  computeH(solver: IntraNodeRouteSolver): number;
@@ -1387,6 +1392,13 @@ declare class SingleSimplifiedPathSolver extends BaseSolver {
1387
1392
  connMap: ConnectivityMap;
1388
1393
  colorMap: Record<string, string>;
1389
1394
  });
1395
+ getConstructorParams(): {
1396
+ inputRoute: HighDensityIntraNodeRoute;
1397
+ otherHdRoutes: HighDensityIntraNodeRoute[];
1398
+ obstacles: Obstacle[];
1399
+ connMap: Record<string, string[]>;
1400
+ colorMap: Record<string, string>;
1401
+ };
1390
1402
  get simplifiedRoute(): HighDensityIntraNodeRoute;
1391
1403
  isValidPath(pointsInRoute: Point[]): boolean;
1392
1404
  _step(): void;