@tscircuit/capacity-autorouter 0.0.295 → 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 CHANGED
@@ -1480,15 +1480,6 @@ declare class HyperSingleIntraNodeSolver extends HyperParameterSupervisorSolver<
1480
1480
  CELL_SIZE_FACTOR: number;
1481
1481
  VIA_PENALTY_FACTOR_2: number;
1482
1482
  }[];
1483
- } | {
1484
- name: string;
1485
- possibleValues: ({
1486
- CLOSED_FORM_TWO_TRACE_SAME_LAYER: boolean;
1487
- CLOSED_FORM_TWO_TRACE_TRANSITION_CROSSING?: undefined;
1488
- } | {
1489
- CLOSED_FORM_TWO_TRACE_TRANSITION_CROSSING: boolean;
1490
- CLOSED_FORM_TWO_TRACE_SAME_LAYER?: undefined;
1491
- })[];
1492
1483
  } | {
1493
1484
  name: string;
1494
1485
  possibleValues: {
@@ -1509,6 +1500,11 @@ declare class HyperSingleIntraNodeSolver extends HyperParameterSupervisorSolver<
1509
1500
  ITERATION_PENALTY: number;
1510
1501
  MINIMUM_FINAL_ACCEPTANCE_GAP: number;
1511
1502
  })[];
1503
+ } | {
1504
+ name: string;
1505
+ possibleValues: {
1506
+ HIGH_DENSITY_A01: boolean;
1507
+ }[];
1512
1508
  })[];
1513
1509
  computeG(solver: IntraNodeRouteSolver): number;
1514
1510
  computeH(solver: IntraNodeRouteSolver): number;
@@ -4362,6 +4358,7 @@ interface HgPortPointPathingSolverParams {
4362
4358
  MAX_RIPS: number;
4363
4359
  MIN_ALLOWED_BOARD_SCORE: number;
4364
4360
  };
4361
+ layerCount: number;
4365
4362
  }
4366
4363
  declare class HgPortPointPathingSolver extends HyperGraphSolver<HgRegion, HgPort> {
4367
4364
  inputNodes: InputNodeWithPortPoints[];
@@ -4390,7 +4387,8 @@ declare class HgPortPointPathingSolver extends HyperGraphSolver<HgRegion, HgPort
4390
4387
  randomRipFraction: number;
4391
4388
  maxRips: number;
4392
4389
  MIN_ALLOWED_BOARD_SCORE: number;
4393
- constructor({ inputGraph, inputConnections, connectionsWithResults, inputNodes, portPointMap, regionMemoryPfMap, rippingEnabled, weights, forceCenterFirst, }: HgPortPointPathingSolverParams);
4390
+ layerCount: number;
4391
+ constructor({ inputGraph, inputConnections, connectionsWithResults, inputNodes, portPointMap, regionMemoryPfMap, rippingEnabled, weights, forceCenterFirst, layerCount, }: HgPortPointPathingSolverParams);
4394
4392
  private clampPf;
4395
4393
  private pfToFailureCost;
4396
4394
  private recordRegionMemoryPf;