@tscircuit/schematic-trace-solver 0.0.21 → 0.0.23

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.
@@ -0,0 +1,894 @@
1
+ import { useMemo } from "react"
2
+ import { GenericSolverDebugger } from "../components/GenericSolverDebugger"
3
+ import { SchematicTraceSingleLineSolver } from "lib/solvers/SchematicTraceLinesSolver/SchematicTraceSingleLineSolver/SchematicTraceSingleLineSolver"
4
+
5
+ const input = {
6
+ chipMap: {
7
+ schematic_component_0: {
8
+ chipId: "schematic_component_0",
9
+ center: {
10
+ x: 0,
11
+ y: 0,
12
+ },
13
+ width: 2.3,
14
+ height: 1.7999999999999998,
15
+ pins: [
16
+ {
17
+ pinId: "U1.1",
18
+ x: -1.15,
19
+ y: 0.7,
20
+ },
21
+ {
22
+ pinId: "U1.2",
23
+ x: -1.15,
24
+ y: 0.49999999999999994,
25
+ },
26
+ {
27
+ pinId: "U1.3",
28
+ x: -1.15,
29
+ y: 0.29999999999999993,
30
+ },
31
+ {
32
+ pinId: "U1.4",
33
+ x: -1.15,
34
+ y: 0.09999999999999987,
35
+ },
36
+ {
37
+ pinId: "U1.5",
38
+ x: -1.15,
39
+ y: -0.10000000000000009,
40
+ },
41
+ {
42
+ pinId: "U1.6",
43
+ x: -1.15,
44
+ y: -0.30000000000000004,
45
+ },
46
+ {
47
+ pinId: "U1.7",
48
+ x: -1.15,
49
+ y: -0.5,
50
+ },
51
+ {
52
+ pinId: "U1.8",
53
+ x: -1.15,
54
+ y: -0.7,
55
+ },
56
+ {
57
+ pinId: "U1.9",
58
+ x: 1.15,
59
+ y: -0.7,
60
+ },
61
+ {
62
+ pinId: "U1.10",
63
+ x: 1.15,
64
+ y: -0.49999999999999994,
65
+ },
66
+ {
67
+ pinId: "U1.11",
68
+ x: 1.15,
69
+ y: -0.29999999999999993,
70
+ },
71
+ {
72
+ pinId: "U1.12",
73
+ x: 1.15,
74
+ y: -0.09999999999999987,
75
+ },
76
+ {
77
+ pinId: "U1.13",
78
+ x: 1.15,
79
+ y: 0.10000000000000009,
80
+ },
81
+ {
82
+ pinId: "U1.14",
83
+ x: 1.15,
84
+ y: 0.30000000000000004,
85
+ },
86
+ {
87
+ pinId: "U1.15",
88
+ x: 1.15,
89
+ y: 0.5,
90
+ },
91
+ {
92
+ pinId: "U1.16",
93
+ x: 1.15,
94
+ y: 0.7,
95
+ },
96
+ ],
97
+ },
98
+ schematic_component_1: {
99
+ chipId: "schematic_component_1",
100
+ center: {
101
+ x: -4,
102
+ y: -3,
103
+ },
104
+ width: 1.1025814000000018,
105
+ height: 0.388910699999999,
106
+ pins: [
107
+ {
108
+ pinId: "R1.1",
109
+ x: -4.551290700000001,
110
+ y: -2.9997267500000007,
111
+ },
112
+ {
113
+ pinId: "R1.2",
114
+ x: -3.448709299999999,
115
+ y: -3.0002732499999993,
116
+ },
117
+ ],
118
+ },
119
+ schematic_component_2: {
120
+ chipId: "schematic_component_2",
121
+ center: {
122
+ x: -4,
123
+ y: -2,
124
+ },
125
+ width: 1.1025814000000018,
126
+ height: 0.388910699999999,
127
+ pins: [
128
+ {
129
+ pinId: "R2.1",
130
+ x: -4.551290700000001,
131
+ y: -1.9997267500000007,
132
+ },
133
+ {
134
+ pinId: "R2.2",
135
+ x: -3.448709299999999,
136
+ y: -2.0002732499999993,
137
+ },
138
+ ],
139
+ },
140
+ schematic_component_3: {
141
+ chipId: "schematic_component_3",
142
+ center: {
143
+ x: -4,
144
+ y: -1,
145
+ },
146
+ width: 1.1025814000000018,
147
+ height: 0.388910699999999,
148
+ pins: [
149
+ {
150
+ pinId: "R3.1",
151
+ x: -4.551290700000001,
152
+ y: -0.9997267500000007,
153
+ },
154
+ {
155
+ pinId: "R3.2",
156
+ x: -3.448709299999999,
157
+ y: -1.0002732499999993,
158
+ },
159
+ ],
160
+ },
161
+ schematic_component_4: {
162
+ chipId: "schematic_component_4",
163
+ center: {
164
+ x: -4,
165
+ y: 0,
166
+ },
167
+ width: 1.1025814000000018,
168
+ height: 0.388910699999999,
169
+ pins: [
170
+ {
171
+ pinId: "R4.1",
172
+ x: -4.551290700000001,
173
+ y: 0.0002732499999993365,
174
+ },
175
+ {
176
+ pinId: "R4.2",
177
+ x: -3.448709299999999,
178
+ y: -0.0002732499999993365,
179
+ },
180
+ ],
181
+ },
182
+ schematic_component_5: {
183
+ chipId: "schematic_component_5",
184
+ center: {
185
+ x: -4,
186
+ y: 1,
187
+ },
188
+ width: 1.1025814000000018,
189
+ height: 0.388910699999999,
190
+ pins: [
191
+ {
192
+ pinId: "R5.1",
193
+ x: -4.551290700000001,
194
+ y: 1.0002732499999993,
195
+ },
196
+ {
197
+ pinId: "R5.2",
198
+ x: -3.448709299999999,
199
+ y: 0.9997267500000007,
200
+ },
201
+ ],
202
+ },
203
+ schematic_component_6: {
204
+ chipId: "schematic_component_6",
205
+ center: {
206
+ x: -4,
207
+ y: 2,
208
+ },
209
+ width: 1.1025814000000018,
210
+ height: 0.388910699999999,
211
+ pins: [
212
+ {
213
+ pinId: "R6.1",
214
+ x: -4.551290700000001,
215
+ y: 2.0002732499999993,
216
+ },
217
+ {
218
+ pinId: "R6.2",
219
+ x: -3.448709299999999,
220
+ y: 1.9997267500000007,
221
+ },
222
+ ],
223
+ },
224
+ schematic_component_7: {
225
+ chipId: "schematic_component_7",
226
+ center: {
227
+ x: 4,
228
+ y: -3,
229
+ },
230
+ width: 1.1025814,
231
+ height: 0.388910699999999,
232
+ pins: [
233
+ {
234
+ pinId: "R7.1",
235
+ x: 3.4487093,
236
+ y: -2.9997267500000007,
237
+ },
238
+ {
239
+ pinId: "R7.2",
240
+ x: 4.5512907,
241
+ y: -3.0002732499999993,
242
+ },
243
+ ],
244
+ },
245
+ schematic_component_8: {
246
+ chipId: "schematic_component_8",
247
+ center: {
248
+ x: 4,
249
+ y: -2,
250
+ },
251
+ width: 1.1025814,
252
+ height: 0.388910699999999,
253
+ pins: [
254
+ {
255
+ pinId: "R8.1",
256
+ x: 3.4487093,
257
+ y: -1.9997267500000007,
258
+ },
259
+ {
260
+ pinId: "R8.2",
261
+ x: 4.5512907,
262
+ y: -2.0002732499999993,
263
+ },
264
+ ],
265
+ },
266
+ schematic_component_9: {
267
+ chipId: "schematic_component_9",
268
+ center: {
269
+ x: 4,
270
+ y: -1,
271
+ },
272
+ width: 1.1025814,
273
+ height: 0.388910699999999,
274
+ pins: [
275
+ {
276
+ pinId: "R9.1",
277
+ x: 3.4487093,
278
+ y: -0.9997267500000007,
279
+ },
280
+ {
281
+ pinId: "R9.2",
282
+ x: 4.5512907,
283
+ y: -1.0002732499999993,
284
+ },
285
+ ],
286
+ },
287
+ schematic_component_10: {
288
+ chipId: "schematic_component_10",
289
+ center: {
290
+ x: 4,
291
+ y: 0,
292
+ },
293
+ width: 1.1025814,
294
+ height: 0.388910699999999,
295
+ pins: [
296
+ {
297
+ pinId: "R10.1",
298
+ x: 3.4487093,
299
+ y: 0.0002732499999993365,
300
+ },
301
+ {
302
+ pinId: "R10.2",
303
+ x: 4.5512907,
304
+ y: -0.0002732499999993365,
305
+ },
306
+ ],
307
+ },
308
+ schematic_component_11: {
309
+ chipId: "schematic_component_11",
310
+ center: {
311
+ x: 4,
312
+ y: 1,
313
+ },
314
+ width: 1.1025814,
315
+ height: 0.388910699999999,
316
+ pins: [
317
+ {
318
+ pinId: "R11.1",
319
+ x: 3.4487093,
320
+ y: 1.0002732499999993,
321
+ },
322
+ {
323
+ pinId: "R11.2",
324
+ x: 4.5512907,
325
+ y: 0.9997267500000007,
326
+ },
327
+ ],
328
+ },
329
+ schematic_component_12: {
330
+ chipId: "schematic_component_12",
331
+ center: {
332
+ x: 4,
333
+ y: 2,
334
+ },
335
+ width: 1.1025814,
336
+ height: 0.388910699999999,
337
+ pins: [
338
+ {
339
+ pinId: "R12.1",
340
+ x: 3.4487093,
341
+ y: 2.0002732499999993,
342
+ },
343
+ {
344
+ pinId: "R12.2",
345
+ x: 4.5512907,
346
+ y: 1.9997267500000007,
347
+ },
348
+ ],
349
+ },
350
+ },
351
+ pins: [
352
+ {
353
+ pinId: "R1.2",
354
+ x: -3.448709299999999,
355
+ y: -3.0002732499999993,
356
+ chipId: "schematic_component_1",
357
+ },
358
+ {
359
+ pinId: "U1.1",
360
+ x: -1.15,
361
+ y: 0.7,
362
+ chipId: "schematic_component_0",
363
+ },
364
+ ],
365
+ guidelines: [
366
+ {
367
+ orientation: "horizontal",
368
+ y: -3.29445535,
369
+ },
370
+ {
371
+ orientation: "horizontal",
372
+ y: 2.29445535,
373
+ },
374
+ {
375
+ orientation: "vertical",
376
+ x: -4.6512907000000006,
377
+ },
378
+ {
379
+ orientation: "vertical",
380
+ x: 4.6512907,
381
+ },
382
+ {
383
+ orientation: "horizontal",
384
+ y: -1.852772325,
385
+ },
386
+ {
387
+ orientation: "vertical",
388
+ x: -2.2993546499999997,
389
+ },
390
+ {
391
+ orientation: "horizontal",
392
+ y: -1.352772325,
393
+ },
394
+ {
395
+ orientation: "horizontal",
396
+ y: -0.8527723250000002,
397
+ },
398
+ {
399
+ orientation: "horizontal",
400
+ y: 0,
401
+ },
402
+ {
403
+ orientation: "horizontal",
404
+ y: 0.8527723250000002,
405
+ },
406
+ {
407
+ orientation: "horizontal",
408
+ y: 1.352772325,
409
+ },
410
+ {
411
+ orientation: "vertical",
412
+ x: 2.2993546499999997,
413
+ },
414
+ {
415
+ orientation: "horizontal",
416
+ y: -2.5,
417
+ },
418
+ {
419
+ orientation: "vertical",
420
+ x: -4,
421
+ },
422
+ {
423
+ orientation: "horizontal",
424
+ y: -2,
425
+ },
426
+ {
427
+ orientation: "horizontal",
428
+ y: -1.5,
429
+ },
430
+ {
431
+ orientation: "horizontal",
432
+ y: -0.9999999999999999,
433
+ },
434
+ {
435
+ orientation: "horizontal",
436
+ y: -0.4999999999999999,
437
+ },
438
+ {
439
+ orientation: "horizontal",
440
+ y: -3,
441
+ },
442
+ {
443
+ orientation: "vertical",
444
+ x: 4.440892098500626e-16,
445
+ },
446
+ {
447
+ orientation: "horizontal",
448
+ y: -1,
449
+ },
450
+ {
451
+ orientation: "horizontal",
452
+ y: -0.5,
453
+ },
454
+ {
455
+ orientation: "horizontal",
456
+ y: 0.5,
457
+ },
458
+ {
459
+ orientation: "horizontal",
460
+ y: 1,
461
+ },
462
+ {
463
+ orientation: "horizontal",
464
+ y: 1.5,
465
+ },
466
+ {
467
+ orientation: "horizontal",
468
+ y: 2,
469
+ },
470
+ {
471
+ orientation: "vertical",
472
+ x: 4,
473
+ },
474
+ ],
475
+ inputProblem: {
476
+ chips: [
477
+ {
478
+ chipId: "schematic_component_0",
479
+ center: {
480
+ x: 0,
481
+ y: 0,
482
+ },
483
+ width: 2.3,
484
+ height: 1.7999999999999998,
485
+ pins: [
486
+ {
487
+ pinId: "U1.1",
488
+ x: -1.15,
489
+ y: 0.7,
490
+ },
491
+ {
492
+ pinId: "U1.2",
493
+ x: -1.15,
494
+ y: 0.49999999999999994,
495
+ },
496
+ {
497
+ pinId: "U1.3",
498
+ x: -1.15,
499
+ y: 0.29999999999999993,
500
+ },
501
+ {
502
+ pinId: "U1.4",
503
+ x: -1.15,
504
+ y: 0.09999999999999987,
505
+ },
506
+ {
507
+ pinId: "U1.5",
508
+ x: -1.15,
509
+ y: -0.10000000000000009,
510
+ },
511
+ {
512
+ pinId: "U1.6",
513
+ x: -1.15,
514
+ y: -0.30000000000000004,
515
+ },
516
+ {
517
+ pinId: "U1.7",
518
+ x: -1.15,
519
+ y: -0.5,
520
+ },
521
+ {
522
+ pinId: "U1.8",
523
+ x: -1.15,
524
+ y: -0.7,
525
+ },
526
+ {
527
+ pinId: "U1.9",
528
+ x: 1.15,
529
+ y: -0.7,
530
+ },
531
+ {
532
+ pinId: "U1.10",
533
+ x: 1.15,
534
+ y: -0.49999999999999994,
535
+ },
536
+ {
537
+ pinId: "U1.11",
538
+ x: 1.15,
539
+ y: -0.29999999999999993,
540
+ },
541
+ {
542
+ pinId: "U1.12",
543
+ x: 1.15,
544
+ y: -0.09999999999999987,
545
+ },
546
+ {
547
+ pinId: "U1.13",
548
+ x: 1.15,
549
+ y: 0.10000000000000009,
550
+ },
551
+ {
552
+ pinId: "U1.14",
553
+ x: 1.15,
554
+ y: 0.30000000000000004,
555
+ },
556
+ {
557
+ pinId: "U1.15",
558
+ x: 1.15,
559
+ y: 0.5,
560
+ },
561
+ {
562
+ pinId: "U1.16",
563
+ x: 1.15,
564
+ y: 0.7,
565
+ },
566
+ ],
567
+ },
568
+ {
569
+ chipId: "schematic_component_1",
570
+ center: {
571
+ x: -4,
572
+ y: -3,
573
+ },
574
+ width: 1.1025814000000018,
575
+ height: 0.388910699999999,
576
+ pins: [
577
+ {
578
+ pinId: "R1.1",
579
+ x: -4.551290700000001,
580
+ y: -2.9997267500000007,
581
+ },
582
+ {
583
+ pinId: "R1.2",
584
+ x: -3.448709299999999,
585
+ y: -3.0002732499999993,
586
+ },
587
+ ],
588
+ },
589
+ {
590
+ chipId: "schematic_component_2",
591
+ center: {
592
+ x: -4,
593
+ y: -2,
594
+ },
595
+ width: 1.1025814000000018,
596
+ height: 0.388910699999999,
597
+ pins: [
598
+ {
599
+ pinId: "R2.1",
600
+ x: -4.551290700000001,
601
+ y: -1.9997267500000007,
602
+ },
603
+ {
604
+ pinId: "R2.2",
605
+ x: -3.448709299999999,
606
+ y: -2.0002732499999993,
607
+ },
608
+ ],
609
+ },
610
+ {
611
+ chipId: "schematic_component_3",
612
+ center: {
613
+ x: -4,
614
+ y: -1,
615
+ },
616
+ width: 1.1025814000000018,
617
+ height: 0.388910699999999,
618
+ pins: [
619
+ {
620
+ pinId: "R3.1",
621
+ x: -4.551290700000001,
622
+ y: -0.9997267500000007,
623
+ },
624
+ {
625
+ pinId: "R3.2",
626
+ x: -3.448709299999999,
627
+ y: -1.0002732499999993,
628
+ },
629
+ ],
630
+ },
631
+ {
632
+ chipId: "schematic_component_4",
633
+ center: {
634
+ x: -4,
635
+ y: 0,
636
+ },
637
+ width: 1.1025814000000018,
638
+ height: 0.388910699999999,
639
+ pins: [
640
+ {
641
+ pinId: "R4.1",
642
+ x: -4.551290700000001,
643
+ y: 0.0002732499999993365,
644
+ },
645
+ {
646
+ pinId: "R4.2",
647
+ x: -3.448709299999999,
648
+ y: -0.0002732499999993365,
649
+ },
650
+ ],
651
+ },
652
+ {
653
+ chipId: "schematic_component_5",
654
+ center: {
655
+ x: -4,
656
+ y: 1,
657
+ },
658
+ width: 1.1025814000000018,
659
+ height: 0.388910699999999,
660
+ pins: [
661
+ {
662
+ pinId: "R5.1",
663
+ x: -4.551290700000001,
664
+ y: 1.0002732499999993,
665
+ },
666
+ {
667
+ pinId: "R5.2",
668
+ x: -3.448709299999999,
669
+ y: 0.9997267500000007,
670
+ },
671
+ ],
672
+ },
673
+ {
674
+ chipId: "schematic_component_6",
675
+ center: {
676
+ x: -4,
677
+ y: 2,
678
+ },
679
+ width: 1.1025814000000018,
680
+ height: 0.388910699999999,
681
+ pins: [
682
+ {
683
+ pinId: "R6.1",
684
+ x: -4.551290700000001,
685
+ y: 2.0002732499999993,
686
+ },
687
+ {
688
+ pinId: "R6.2",
689
+ x: -3.448709299999999,
690
+ y: 1.9997267500000007,
691
+ },
692
+ ],
693
+ },
694
+ {
695
+ chipId: "schematic_component_7",
696
+ center: {
697
+ x: 4,
698
+ y: -3,
699
+ },
700
+ width: 1.1025814,
701
+ height: 0.388910699999999,
702
+ pins: [
703
+ {
704
+ pinId: "R7.1",
705
+ x: 3.4487093,
706
+ y: -2.9997267500000007,
707
+ },
708
+ {
709
+ pinId: "R7.2",
710
+ x: 4.5512907,
711
+ y: -3.0002732499999993,
712
+ },
713
+ ],
714
+ },
715
+ {
716
+ chipId: "schematic_component_8",
717
+ center: {
718
+ x: 4,
719
+ y: -2,
720
+ },
721
+ width: 1.1025814,
722
+ height: 0.388910699999999,
723
+ pins: [
724
+ {
725
+ pinId: "R8.1",
726
+ x: 3.4487093,
727
+ y: -1.9997267500000007,
728
+ },
729
+ {
730
+ pinId: "R8.2",
731
+ x: 4.5512907,
732
+ y: -2.0002732499999993,
733
+ },
734
+ ],
735
+ },
736
+ {
737
+ chipId: "schematic_component_9",
738
+ center: {
739
+ x: 4,
740
+ y: -1,
741
+ },
742
+ width: 1.1025814,
743
+ height: 0.388910699999999,
744
+ pins: [
745
+ {
746
+ pinId: "R9.1",
747
+ x: 3.4487093,
748
+ y: -0.9997267500000007,
749
+ },
750
+ {
751
+ pinId: "R9.2",
752
+ x: 4.5512907,
753
+ y: -1.0002732499999993,
754
+ },
755
+ ],
756
+ },
757
+ {
758
+ chipId: "schematic_component_10",
759
+ center: {
760
+ x: 4,
761
+ y: 0,
762
+ },
763
+ width: 1.1025814,
764
+ height: 0.388910699999999,
765
+ pins: [
766
+ {
767
+ pinId: "R10.1",
768
+ x: 3.4487093,
769
+ y: 0.0002732499999993365,
770
+ },
771
+ {
772
+ pinId: "R10.2",
773
+ x: 4.5512907,
774
+ y: -0.0002732499999993365,
775
+ },
776
+ ],
777
+ },
778
+ {
779
+ chipId: "schematic_component_11",
780
+ center: {
781
+ x: 4,
782
+ y: 1,
783
+ },
784
+ width: 1.1025814,
785
+ height: 0.388910699999999,
786
+ pins: [
787
+ {
788
+ pinId: "R11.1",
789
+ x: 3.4487093,
790
+ y: 1.0002732499999993,
791
+ },
792
+ {
793
+ pinId: "R11.2",
794
+ x: 4.5512907,
795
+ y: 0.9997267500000007,
796
+ },
797
+ ],
798
+ },
799
+ {
800
+ chipId: "schematic_component_12",
801
+ center: {
802
+ x: 4,
803
+ y: 2,
804
+ },
805
+ width: 1.1025814,
806
+ height: 0.388910699999999,
807
+ pins: [
808
+ {
809
+ pinId: "R12.1",
810
+ x: 3.4487093,
811
+ y: 2.0002732499999993,
812
+ },
813
+ {
814
+ pinId: "R12.2",
815
+ x: 4.5512907,
816
+ y: 1.9997267500000007,
817
+ },
818
+ ],
819
+ },
820
+ ],
821
+ directConnections: [
822
+ {
823
+ pinIds: ["R1.2", "U1.1"],
824
+ netId: ".R1 > .pin2 to .U1 > .IN1",
825
+ },
826
+ {
827
+ pinIds: ["R2.2", "U1.3"],
828
+ netId: ".R2 > .pin2 to .U1 > .IN3",
829
+ },
830
+ {
831
+ pinIds: ["R3.2", "U1.4"],
832
+ netId: ".R3 > .pin2 to .U1 > .IN4",
833
+ },
834
+ {
835
+ pinIds: ["R4.2", "U1.6"],
836
+ netId: ".R4 > .pin2 to .U1 > .IN6",
837
+ },
838
+ {
839
+ pinIds: ["R5.2", "U1.7"],
840
+ netId: ".R5 > .pin2 to .U1 > .IN7",
841
+ },
842
+ {
843
+ pinIds: ["R6.2", "U1.8"],
844
+ netId: ".R6 > .pin2 to .U1 > .IN8",
845
+ },
846
+ {
847
+ pinIds: ["R7.1", "U1.16"],
848
+ netId: ".R7 > .pin1 to .U1 > .OUT8",
849
+ },
850
+ {
851
+ pinIds: ["R8.1", "U1.14"],
852
+ netId: ".R8 > .pin1 to .U1 > .OUT6",
853
+ },
854
+ {
855
+ pinIds: ["R9.1", "U1.13"],
856
+ netId: ".R9 > .pin1 to .U1 > .OUT5",
857
+ },
858
+ {
859
+ pinIds: ["R10.1", "U1.12"],
860
+ netId: ".R10 > .pin1 to .U1 > .OUT4",
861
+ },
862
+ {
863
+ pinIds: ["R11.1", "U1.10"],
864
+ netId: ".R11 > .pin1 to .U1 > .OUT2",
865
+ },
866
+ {
867
+ pinIds: ["R12.1", "U1.9"],
868
+ netId: ".R12 > .pin1 to .U1 > .OUT1",
869
+ },
870
+ {
871
+ pinIds: ["R1.1", "R12.2"],
872
+ netId: ".R1 > .pin1 to .R12 > .pin2",
873
+ },
874
+ {
875
+ pinIds: ["R3.1", "R10.2"],
876
+ netId: ".R3 > .pin1 to .R10 > .pin2",
877
+ },
878
+ {
879
+ pinIds: ["R5.1", "R8.2"],
880
+ netId: ".R5 > .pin1 to .R8 > .pin2",
881
+ },
882
+ ],
883
+ netConnections: [],
884
+ availableNetLabelOrientations: {},
885
+ maxMspPairDistance: 2,
886
+ },
887
+ }
888
+
889
+ export default () => {
890
+ const solver = useMemo(() => {
891
+ return new SchematicTraceSingleLineSolver(input as any)
892
+ }, [])
893
+ return <GenericSolverDebugger solver={solver} />
894
+ }