@tscircuit/capacity-autorouter 0.0.243 → 0.0.244
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 +3 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1850,6 +1850,7 @@ interface MultiSectionPortPointOptimizerParams {
|
|
|
1850
1850
|
capacityMeshNodes: CapacityMeshNode[];
|
|
1851
1851
|
capacityMeshEdges: CapacityMeshEdge[];
|
|
1852
1852
|
colorMap?: Record<string, string>;
|
|
1853
|
+
SHUFFLE_SEEDS_PER_SECTION?: number | null;
|
|
1853
1854
|
/** Results from the initial PortPointPathingSolver run */
|
|
1854
1855
|
initialConnectionResults: ConnectionPathResult[];
|
|
1855
1856
|
/** Assigned port points from initial run */
|
|
@@ -1940,6 +1941,7 @@ declare class MultiSectionPortPointOptimizer extends BaseSolver {
|
|
|
1940
1941
|
*/
|
|
1941
1942
|
FRACTION_TO_REPLACE: number;
|
|
1942
1943
|
JUMPER_PF_FN_ENABLED: boolean;
|
|
1944
|
+
SHUFFLE_SEEDS_PER_SECTION: number | null | undefined;
|
|
1943
1945
|
/**
|
|
1944
1946
|
* If true, always rip connections that have same-layer intersections,
|
|
1945
1947
|
* even if they would otherwise be kept due to FRACTION_TO_REPLACE.
|
|
@@ -3037,7 +3039,7 @@ declare class SimpleHighDensitySolver extends BaseSolver {
|
|
|
3037
3039
|
visualize(): GraphicsObject;
|
|
3038
3040
|
}
|
|
3039
3041
|
|
|
3040
|
-
type HyperGraphPatternType = "single_1206x4" | "1x2_1206x4" | "2x2_1206x4";
|
|
3042
|
+
type HyperGraphPatternType = "single_1206x4" | "1x2_1206x4" | "2x2_1206x4" | "3x1_1206x4" | "3x2_1206x4" | "3x3_1206x4" | "4x4_1206x4" | "6x4_1206x4";
|
|
3041
3043
|
interface JumperPrepatternSolver2HyperParameters {
|
|
3042
3044
|
/** Pattern type for jumper placement - "single_1206x4" (~8x8mm) or "2x2_1206x4" (~14x14mm) */
|
|
3043
3045
|
PATTERN_TYPE?: HyperGraphPatternType;
|