@tscircuit/schematic-trace-solver 0.0.72 → 0.0.73
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
CHANGED
|
@@ -3525,9 +3525,6 @@ var TraceLabelOverlapAvoidanceSolver = class extends BaseSolver {
|
|
|
3525
3525
|
_step() {
|
|
3526
3526
|
if (this.phase === "searching_for_overlaps") {
|
|
3527
3527
|
if (this.unprocessedTraces.length === 0) {
|
|
3528
|
-
console.log(
|
|
3529
|
-
`Dispatch phase complete. Created ${this.subSolvers.length} sub-solvers.`
|
|
3530
|
-
);
|
|
3531
3528
|
this.phase = "fixing_overlaps";
|
|
3532
3529
|
return;
|
|
3533
3530
|
}
|
|
@@ -3562,7 +3559,6 @@ var TraceLabelOverlapAvoidanceSolver = class extends BaseSolver {
|
|
|
3562
3559
|
}
|
|
3563
3560
|
} else if (this.phase === "fixing_overlaps") {
|
|
3564
3561
|
if (this.subSolvers.every((s) => s.solved || s.failed)) {
|
|
3565
|
-
console.log("All sub-solvers finished.");
|
|
3566
3562
|
if (!this.labelMergingSolver) {
|
|
3567
3563
|
this.labelMergingSolver = new MergedNetLabelObstacleSolver({
|
|
3568
3564
|
netLabelPlacements: this.netLabelPlacements,
|
|
@@ -57,9 +57,6 @@ export class TraceLabelOverlapAvoidanceSolver extends BaseSolver {
|
|
|
57
57
|
override _step() {
|
|
58
58
|
if (this.phase === "searching_for_overlaps") {
|
|
59
59
|
if (this.unprocessedTraces.length === 0) {
|
|
60
|
-
console.log(
|
|
61
|
-
`Dispatch phase complete. Created ${this.subSolvers.length} sub-solvers.`,
|
|
62
|
-
)
|
|
63
60
|
this.phase = "fixing_overlaps"
|
|
64
61
|
return
|
|
65
62
|
}
|
|
@@ -99,7 +96,6 @@ export class TraceLabelOverlapAvoidanceSolver extends BaseSolver {
|
|
|
99
96
|
}
|
|
100
97
|
} else if (this.phase === "fixing_overlaps") {
|
|
101
98
|
if (this.subSolvers.every((s) => s.solved || s.failed)) {
|
|
102
|
-
console.log("All sub-solvers finished.")
|
|
103
99
|
// Final merge for pipeline compatibility
|
|
104
100
|
if (!this.labelMergingSolver) {
|
|
105
101
|
this.labelMergingSolver = new MergedNetLabelObstacleSolver({
|