@tscircuit/capacity-autorouter 0.0.708 → 0.0.709
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 +5 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4753,6 +4753,9 @@ type ConnectionHg = Omit<Connection, "startRegion" | "endRegion"> & {
|
|
|
4753
4753
|
endRegion: RegionHg;
|
|
4754
4754
|
simpleRouteConnection?: SimpleRouteConnection;
|
|
4755
4755
|
};
|
|
4756
|
+
type ConnectionHgWithNetId = ConnectionHg & {
|
|
4757
|
+
mutuallyConnectedNetworkId: string;
|
|
4758
|
+
};
|
|
4756
4759
|
type CandidateHg = Omit<Candidate$3, "port" | "parent" | "lastPort" | "lastRegion" | "nextRegion"> & {
|
|
4757
4760
|
port: RegionPortHg;
|
|
4758
4761
|
parent?: CandidateHg;
|
|
@@ -4776,7 +4779,7 @@ type RegionId = CapacityMeshNodeId;
|
|
|
4776
4779
|
type RegionMemoryPfMap = Map<RegionId, number>;
|
|
4777
4780
|
interface HgPortPointPathingSolverParams {
|
|
4778
4781
|
graph: HyperGraphHg;
|
|
4779
|
-
connections:
|
|
4782
|
+
connections: ConnectionHgWithNetId[];
|
|
4780
4783
|
colorMap?: Record<string, string>;
|
|
4781
4784
|
inputSolvedRoutes?: SolvedRoutesHg[];
|
|
4782
4785
|
layerCount: number;
|
|
@@ -4955,6 +4958,7 @@ declare class TinyHypergraphPortPointPathingSolver extends BaseSolver {
|
|
|
4955
4958
|
private inputNodeWithPortPoints;
|
|
4956
4959
|
private originalRegionById;
|
|
4957
4960
|
private originalRegionIds;
|
|
4961
|
+
private rootConnectionNameByConnectionId;
|
|
4958
4962
|
constructor(params: HgPortPointPathingSolverParams);
|
|
4959
4963
|
getSolverName(): string;
|
|
4960
4964
|
_step(): void;
|