@tscircuit/hypergraph 0.0.59 → 0.0.60

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
@@ -62,6 +62,7 @@ type Candidate<RegionType extends Region = Region, RegionPortType extends Region
62
62
  type HyperGraph = {
63
63
  ports: RegionPort[];
64
64
  regions: Region[];
65
+ solvedRoutes?: SolvedRoute[];
65
66
  };
66
67
  type SerializedGraphPort = {
67
68
  portId: PortId;
package/dist/index.js CHANGED
@@ -1710,6 +1710,7 @@ var HyperGraphSolver = class extends BaseSolver {
1710
1710
  super();
1711
1711
  this.input = input;
1712
1712
  this.graph = convertSerializedHyperGraphToHyperGraph(input.inputGraph);
1713
+ this.graph.solvedRoutes = this.solvedRoutes;
1713
1714
  for (const region of this.graph.regions) {
1714
1715
  region.assignments = [];
1715
1716
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tscircuit/hypergraph",
3
3
  "main": "dist/index.js",
4
- "version": "0.0.59",
4
+ "version": "0.0.60",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "start": "cosmos",