@tscircuit/copper-pour-solver 0.0.15 → 0.0.16

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
@@ -50,6 +50,7 @@ declare class CopperPourPipelineSolver extends BasePipelineSolver<InputProblem>
50
50
  input: InputProblem;
51
51
  pipelineDef: never[];
52
52
  constructor(input: InputProblem);
53
+ getSolverName(): string;
53
54
  getOutput(): PipelineOutput;
54
55
  }
55
56
 
package/dist/index.js CHANGED
@@ -295,6 +295,9 @@ var CopperPourPipelineSolver = class extends BasePipelineSolver {
295
295
  this.input = input;
296
296
  }
297
297
  pipelineDef = [];
298
+ getSolverName() {
299
+ return "CopperPourPipelineSolver";
300
+ }
298
301
  getOutput() {
299
302
  const brep_shapes = [];
300
303
  for (const region of this.input.regionsForPour) {
@@ -12,6 +12,10 @@ export class CopperPourPipelineSolver extends BasePipelineSolver<InputProblem> {
12
12
  super(input)
13
13
  }
14
14
 
15
+ override getSolverName(): string {
16
+ return "CopperPourPipelineSolver"
17
+ }
18
+
15
19
  override getOutput(): PipelineOutput {
16
20
  const brep_shapes: BRepShape[] = []
17
21
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tscircuit/copper-pour-solver",
3
3
  "main": "dist/index.js",
4
- "version": "0.0.15",
4
+ "version": "0.0.16",
5
5
  "scripts": {
6
6
  "format": "biome format . --write",
7
7
  "format:check": "biome format .",
@@ -12,7 +12,7 @@
12
12
  "@biomejs/biome": "^2.2.4",
13
13
  "@flatten-js/core": "^1.6.2",
14
14
  "@tscircuit/math-utils": "^0.0.25",
15
- "@tscircuit/solver-utils": "^0.0.3",
15
+ "@tscircuit/solver-utils": "^0.0.14",
16
16
  "circuit-json-to-connectivity-map": "^0.0.23",
17
17
  "@types/bun": "latest",
18
18
  "bun-match-svg": "^0.0.13",
@@ -20,7 +20,7 @@
20
20
  "circuit-to-svg": "^0.0.262",
21
21
  "react-cosmos": "^7.0.0",
22
22
  "react-cosmos-plugin-vite": "^7.0.0",
23
- "tscircuit": "^0.0.863",
23
+ "tscircuit": "^0.0.1209",
24
24
  "tsup": "^8.5.0",
25
25
  "vite": "^7.1.5"
26
26
  },