@tscircuit/hypergraph 0.0.63 → 0.0.64

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
@@ -210,7 +210,6 @@ declare class HyperGraphSolver<RegionType extends Region = Region, RegionPortTyp
210
210
  ripCost: number;
211
211
  inputSolvedRoutes: SolvedRoute[];
212
212
  };
213
- getOutput(): SolvedRoute[];
214
213
  computeH(candidate: CandidateType): number;
215
214
  /**
216
215
  * OVERRIDE THIS
package/dist/index.js CHANGED
@@ -1851,9 +1851,6 @@ var HyperGraphSolver = class extends BaseSolver {
1851
1851
  inputSolvedRoutes: this.solvedRoutes
1852
1852
  };
1853
1853
  }
1854
- getOutput() {
1855
- return this.solvedRoutes;
1856
- }
1857
1854
  computeH(candidate) {
1858
1855
  return this.estimateCostToEnd(candidate.port);
1859
1856
  }
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.63",
4
+ "version": "0.0.64",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "start": "cosmos",