@tscircuit/schematic-trace-solver 0.0.182 → 0.0.183

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
@@ -255,15 +255,19 @@ declare class SchematicTraceSingleLineSolver2 extends BaseSolver {
255
255
  };
256
256
  baseElbow: Point[];
257
257
  preferExteriorDetours: boolean;
258
+ reserveNetLabelClearance: boolean;
258
259
  solvedTracePath: Point[] | null;
259
260
  private queue;
260
261
  private visited;
262
+ private inferredPinIndexes;
263
+ hasAmbiguousPinDirections: boolean;
261
264
  constructor(params: {
262
265
  pins: MspConnectionPair["pins"];
263
266
  connectionPair?: MspConnectionPair;
264
267
  inputProblem: InputProblem;
265
268
  chipMap: Record<string, InputChip>;
266
269
  preferExteriorDetours?: boolean;
270
+ reserveNetLabelClearance?: boolean;
267
271
  });
268
272
  getConstructorParams(): ConstructorParameters<typeof SchematicTraceSingleLineSolver2>[0];
269
273
  private getTextBoxPaddingForConnectionPair;
@@ -289,6 +293,7 @@ declare class SchematicTraceLinesSolver extends BaseSolver {
289
293
  queuedConnectionPairs: MspConnectionPair[];
290
294
  chipMap: Record<string, InputChip>;
291
295
  currentConnectionPair: MspConnectionPair | null;
296
+ retryingWithoutNetLabelClearance: boolean;
292
297
  solvedTracePaths: Array<SolvedTracePath>;
293
298
  failedConnectionPairs: Array<MspConnectionPair & {
294
299
  error?: string;