@tscircuit/core 0.0.1307 → 0.0.1308
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.js +2 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -18990,11 +18990,7 @@ function createSchematicTraceSolverInputProblem(group) {
|
|
|
18990
18990
|
const directConnections = [];
|
|
18991
18991
|
const connectedPairKeys = /* @__PURE__ */ new Set();
|
|
18992
18992
|
const connKeysWithExplicitPortNetTraces = /* @__PURE__ */ new Set();
|
|
18993
|
-
for (const
|
|
18994
|
-
if (trace.parent !== group) continue;
|
|
18995
|
-
const sourceTraceId = trace.source_trace_id;
|
|
18996
|
-
if (!sourceTraceId) continue;
|
|
18997
|
-
const sourceTrace = db.source_trace.get(sourceTraceId);
|
|
18993
|
+
for (const sourceTrace of tracesInScope) {
|
|
18998
18994
|
if (sourceTrace?.subcircuit_connectivity_map_key && (sourceTrace.connected_source_port_ids?.length ?? 0) > 0 && (sourceTrace.connected_source_net_ids?.length ?? 0) > 0) {
|
|
18999
18995
|
connKeysWithExplicitPortNetTraces.add(
|
|
19000
18996
|
sourceTrace.subcircuit_connectivity_map_key
|
|
@@ -23486,7 +23482,7 @@ import { identity as identity5 } from "transformation-matrix";
|
|
|
23486
23482
|
var package_default = {
|
|
23487
23483
|
name: "@tscircuit/core",
|
|
23488
23484
|
type: "module",
|
|
23489
|
-
version: "0.0.
|
|
23485
|
+
version: "0.0.1307",
|
|
23490
23486
|
types: "dist/index.d.ts",
|
|
23491
23487
|
main: "dist/index.js",
|
|
23492
23488
|
module: "dist/index.js",
|