-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTinyHyperGraphBusSolver.ts
More file actions
1249 lines (1072 loc) · 34.4 KB
/
TinyHyperGraphBusSolver.ts
File metadata and controls
1249 lines (1072 loc) · 34.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import type { GraphicsObject } from "graphics-debug"
import { MinHeap } from "../MinHeap"
import {
type Candidate,
createEmptyRegionIntersectionCache,
TinyHyperGraphSolver,
type TinyHyperGraphProblem,
type TinyHyperGraphSolverOptions,
type TinyHyperGraphTopology,
} from "../core"
import type { NetId, PortId, RegionId, RouteId } from "../types"
import { visualizeTinyGraph } from "../visualizeTinyGraph"
import { deriveBusTraceOrder, type BusTraceOrder } from "./deriveBusTraceOrder"
import {
doSegmentsConflict,
getPortDistance,
getPortProjection,
getWeightedDistanceFromPortToPolyline,
} from "./geometry"
export interface TinyHyperGraphBusSolverOptions
extends TinyHyperGraphSolverOptions {
BUS_TRACE_SEPARATION?: number
}
interface BusTraceState {
routeId: RouteId
portId: PortId
nextRegionId?: RegionId
atGoal: boolean
prevState?: BusTraceState
}
interface TraceSearchCandidate {
state: BusTraceState
g: number
h: number
f: number
}
interface ActiveTraceSearch {
traceIndex: number
routeId: RouteId
candidateQueue: MinHeap<TraceSearchCandidate>
bestCostByTraceState: Map<string, number>
}
interface BusSolveState {
phase: "center" | "outer" | "done"
currentOuterTraceCursor: number
centerlinePortIds?: PortId[]
centerlineHasLayerChanges: boolean
reservedPortIds: Set<PortId>
solvedTraceStates: Array<BusTraceState | undefined>
solvedTraceCosts: Float64Array
activeTraceSearch?: ActiveTraceSearch
lastExpandedCandidate?: TraceSearchCandidate
}
const BUS_CANDIDATE_EPSILON = 1e-9
const compareTraceCandidates = (
left: TraceSearchCandidate,
right: TraceSearchCandidate,
) => left.f - right.f || left.h - right.h || left.g - right.g
export class TinyHyperGraphBusSolver extends TinyHyperGraphSolver {
BUS_TRACE_SEPARATION = 0.1
BUS_ALIGNMENT_COST_FACTOR = 0.2
BUS_HEURISTIC_WEIGHT = 1.5
BUS_LAYER_DISTANCE_COST = 100
readonly busTraceOrder: BusTraceOrder
private readonly centerTraceIndex: number
private readonly outerTraceIndices: number[]
private busState: BusSolveState
constructor(
topology: TinyHyperGraphTopology,
problem: TinyHyperGraphProblem,
options?: TinyHyperGraphBusSolverOptions,
) {
super(topology, problem, options)
if (options?.BUS_TRACE_SEPARATION !== undefined) {
this.BUS_TRACE_SEPARATION = options.BUS_TRACE_SEPARATION
}
this.busTraceOrder = deriveBusTraceOrder(topology, problem)
this.centerTraceIndex = this.busTraceOrder.centerTraceIndex
this.outerTraceIndices = this.busTraceOrder.traces
.map((trace) => trace.orderIndex)
.filter((traceIndex) => traceIndex !== this.centerTraceIndex)
.sort((leftIndex, rightIndex) => {
const leftTrace = this.busTraceOrder.traces[leftIndex]!
const rightTrace = this.busTraceOrder.traces[rightIndex]!
return (
leftTrace.distanceFromCenter - rightTrace.distanceFromCenter ||
leftTrace.signedIndexFromCenter - rightTrace.signedIndexFromCenter
)
})
this.busState = this.createInitialBusState()
this.updateBusStats()
}
override _setup() {
this.resetCommittedSolution()
void this.problemSetup
this.busState = this.createInitialBusState()
this.updateBusStats()
}
override _step() {
if (!this.busState.activeTraceSearch) {
this.startNextTraceSearch()
if (this.solved || this.failed) {
this.updateBusStats()
return
}
}
const activeTraceSearch = this.busState.activeTraceSearch
if (!activeTraceSearch) {
this.failed = true
this.error = "Failed to start the next bus-trace search"
this.updateBusStats()
return
}
const currentCandidate = activeTraceSearch.candidateQueue.dequeue()
this.busState.lastExpandedCandidate = currentCandidate
if (!currentCandidate) {
this.failed = true
this.error = `No path found for bus trace ${this.getTraceConnectionId(activeTraceSearch.traceIndex)}`
this.updateBusStats()
return
}
const currentBestCost = activeTraceSearch.bestCostByTraceState.get(
this.getTraceStateKey(currentCandidate.state),
)
if (
currentBestCost !== undefined &&
currentCandidate.g > currentBestCost + BUS_CANDIDATE_EPSILON
) {
this.updateBusStats(currentCandidate)
return
}
if (currentCandidate.state.atGoal) {
this.finalizeSolvedTrace(
activeTraceSearch.traceIndex,
currentCandidate.state,
currentCandidate.g,
)
this.updateBusStats(currentCandidate)
return
}
for (const move of this.getAvailableTraceMoves(currentCandidate.state)) {
if (
this.isMoveBlockedByBusConstraints(activeTraceSearch.traceIndex, move)
) {
continue
}
let nextG =
currentCandidate.g + move.segmentLength * this.DISTANCE_TO_COST
if (activeTraceSearch.traceIndex !== this.centerTraceIndex) {
nextG +=
this.computeTraceAlignmentCost(
activeTraceSearch.traceIndex,
this.busState.centerlinePortIds!,
move.nextState.portId,
) * this.BUS_ALIGNMENT_COST_FACTOR
}
const nextH = this.computeTraceHeuristic(move.nextState)
const nextF =
nextG +
nextH *
(activeTraceSearch.traceIndex === this.centerTraceIndex
? 1
: this.BUS_HEURISTIC_WEIGHT)
const nextStateKey = this.getTraceStateKey(move.nextState)
const existingBestCost =
activeTraceSearch.bestCostByTraceState.get(nextStateKey)
if (
existingBestCost !== undefined &&
nextG >= existingBestCost - BUS_CANDIDATE_EPSILON
) {
continue
}
activeTraceSearch.bestCostByTraceState.set(nextStateKey, nextG)
activeTraceSearch.candidateQueue.queue({
state: move.nextState,
g: nextG,
h: nextH,
f: nextF,
})
}
this.updateBusStats(currentCandidate)
}
override visualize(): GraphicsObject {
const activeRouteId =
this.busState.activeTraceSearch?.routeId ??
this.busState.lastExpandedCandidate?.state.routeId
if (this.iterations === 0 || activeRouteId === undefined || this.solved) {
return visualizeTinyGraph(this)
}
const previousCurrentRouteId = this.state.currentRouteId
const previousCurrentRouteNetId = this.state.currentRouteNetId
const previousGoalPortId = this.state.goalPortId
const previousCandidateQueue = this.state.candidateQueue
const previousUnroutedRoutes = this.state.unroutedRoutes
try {
this.state.currentRouteId = activeRouteId
this.state.currentRouteNetId = this.problem.routeNet[activeRouteId]
this.state.goalPortId = this.problem.routeEndPort[activeRouteId]!
this.state.candidateQueue = new MinHeap<Candidate>(
this.getVisualizationCandidates(activeRouteId),
(left, right) =>
left.f - right.f || left.h - right.h || left.g - right.g,
)
this.state.unroutedRoutes =
this.getVisualizationUnroutedRouteIds(activeRouteId)
const graphics = visualizeTinyGraph(this)
this.removeActiveRouteHint(graphics, activeRouteId)
this.pushBusTraceCandidatePaths(
graphics,
this.buildVisualizationBusTraceStates(activeRouteId),
activeRouteId,
)
this.pushActiveCandidateOverlay(graphics)
return graphics
} finally {
this.state.currentRouteId = previousCurrentRouteId
this.state.currentRouteNetId = previousCurrentRouteNetId
this.state.goalPortId = previousGoalPortId
this.state.candidateQueue = previousCandidateQueue
this.state.unroutedRoutes = previousUnroutedRoutes
}
}
private createInitialBusState(): BusSolveState {
return {
phase: "center",
currentOuterTraceCursor: 0,
centerlinePortIds: undefined,
centerlineHasLayerChanges: false,
reservedPortIds: new Set(),
solvedTraceStates: Array.from(
{ length: this.problem.routeCount },
() => undefined as BusTraceState | undefined,
),
solvedTraceCosts: new Float64Array(this.problem.routeCount),
activeTraceSearch: undefined,
lastExpandedCandidate: undefined,
}
}
private getVisualizationCandidates(activeRouteId: RouteId) {
const candidates: Candidate[] = []
if (
this.busState.lastExpandedCandidate &&
this.busState.lastExpandedCandidate.state.routeId === activeRouteId
) {
candidates.push(
this.convertTraceSearchCandidateToVisualizationCandidate(
this.busState.lastExpandedCandidate,
),
)
}
for (const candidate of this.busState.activeTraceSearch?.candidateQueue.toArray() ??
[]) {
candidates.push(
this.convertTraceSearchCandidateToVisualizationCandidate(candidate),
)
}
return candidates
}
private getVisualizationUnroutedRouteIds(activeRouteId: RouteId) {
const remainingRouteIds: RouteId[] = []
for (
let traceIndex = 0;
traceIndex < this.busTraceOrder.traces.length;
traceIndex++
) {
if (this.busState.solvedTraceStates[traceIndex]) {
continue
}
const routeId = this.busTraceOrder.traces[traceIndex]!.routeId
if (routeId === activeRouteId) {
continue
}
remainingRouteIds.push(routeId)
}
return remainingRouteIds
}
private convertTraceSearchCandidateToVisualizationCandidate(
candidate: TraceSearchCandidate,
): Candidate {
const visualizationCandidate =
this.convertTraceStateToVisualizationCandidate(candidate.state)
visualizationCandidate.g = candidate.g
visualizationCandidate.h = candidate.h
visualizationCandidate.f = candidate.f
return visualizationCandidate
}
private convertTraceStateToVisualizationCandidate(
traceState: BusTraceState,
): Candidate {
return {
portId: traceState.portId,
nextRegionId:
traceState.nextRegionId ?? traceState.prevState?.nextRegionId ?? -1,
prevRegionId: traceState.prevState?.nextRegionId,
prevCandidate: traceState.prevState
? this.convertTraceStateToVisualizationCandidate(traceState.prevState)
: undefined,
g: 0,
h: 0,
f: 0,
}
}
private getCurrentVisualizationTraceState(routeId: RouteId) {
if (this.busState.lastExpandedCandidate?.state.routeId === routeId) {
return this.busState.lastExpandedCandidate.state
}
const activeTraceSearch = this.busState.activeTraceSearch
if (!activeTraceSearch || activeTraceSearch.routeId !== routeId) {
return undefined
}
let bestCandidate: TraceSearchCandidate | undefined
for (const candidate of activeTraceSearch.candidateQueue.toArray()) {
if (
!bestCandidate ||
compareTraceCandidates(candidate, bestCandidate) < 0
) {
bestCandidate = candidate
}
}
return bestCandidate?.state
}
private buildVisualizationBusTraceStates(activeRouteId: RouteId) {
const traceStates = [...this.busState.solvedTraceStates]
const reservedPortIds = new Set(this.busState.reservedPortIds)
let centerlinePortIds = this.busState.centerlinePortIds
let centerlineHasLayerChanges = this.busState.centerlineHasLayerChanges
const activeTraceIndex = this.busTraceOrder.traces.findIndex(
(trace) => trace.routeId === activeRouteId,
)
const activeTraceState =
this.getCurrentVisualizationTraceState(activeRouteId)
if (activeTraceIndex !== -1 && activeTraceState) {
traceStates[activeTraceIndex] = activeTraceState
const activePathPortIds = this.getTracePathPortIds(activeTraceState)
for (const portId of activePathPortIds) {
reservedPortIds.add(portId)
}
if (activeTraceIndex === this.centerTraceIndex) {
centerlinePortIds = activePathPortIds
centerlineHasLayerChanges = this.doesPathChangeLayers(activePathPortIds)
}
}
for (const traceIndex of [
this.centerTraceIndex,
...this.outerTraceIndices,
]) {
if (traceStates[traceIndex]) {
continue
}
if (traceIndex !== this.centerTraceIndex && !centerlinePortIds) {
continue
}
const previewTraceState = this.solveVisualizationTracePath(traceIndex, {
reservedPortIds,
centerlinePortIds,
centerlineHasLayerChanges,
})
if (!previewTraceState) {
continue
}
traceStates[traceIndex] = previewTraceState
const previewPathPortIds = this.getTracePathPortIds(previewTraceState)
for (const portId of previewPathPortIds) {
reservedPortIds.add(portId)
}
if (traceIndex === this.centerTraceIndex) {
centerlinePortIds = previewPathPortIds
centerlineHasLayerChanges =
this.doesPathChangeLayers(previewPathPortIds)
}
}
return traceStates
}
private solveVisualizationTracePath(
traceIndex: number,
options: {
reservedPortIds: ReadonlySet<PortId>
centerlinePortIds?: readonly PortId[]
centerlineHasLayerChanges: boolean
},
) {
const routeId = this.busTraceOrder.traces[traceIndex]!.routeId
const startState = this.createStartingTraceState(routeId)
const startPortId = this.problem.routeStartPort[routeId]!
const goalPortId = this.problem.routeEndPort[routeId]!
if (
traceIndex !== this.centerTraceIndex &&
(options.reservedPortIds.has(startPortId) ||
options.reservedPortIds.has(goalPortId))
) {
return undefined
}
if (startState.atGoal) {
return startState
}
const candidateQueue = new MinHeap<TraceSearchCandidate>(
[],
compareTraceCandidates,
)
const bestCostByTraceState = new Map<string, number>()
const startH = this.computeTraceHeuristic(startState)
candidateQueue.queue({
state: startState,
g: 0,
h: startH,
f:
startH *
(traceIndex === this.centerTraceIndex ? 1 : this.BUS_HEURISTIC_WEIGHT),
})
bestCostByTraceState.set(this.getTraceStateKey(startState), 0)
while (candidateQueue.length > 0) {
const currentCandidate = candidateQueue.dequeue()
if (!currentCandidate) {
break
}
const currentBestCost = bestCostByTraceState.get(
this.getTraceStateKey(currentCandidate.state),
)
if (
currentBestCost !== undefined &&
currentCandidate.g > currentBestCost + BUS_CANDIDATE_EPSILON
) {
continue
}
if (currentCandidate.state.atGoal) {
return currentCandidate.state
}
for (const move of this.getAvailableTraceMoves(currentCandidate.state)) {
if (
this.isMoveBlockedByBusConstraints(traceIndex, move, {
reservedPortIds: options.reservedPortIds,
centerlinePortIds: options.centerlinePortIds,
centerlineHasLayerChanges: options.centerlineHasLayerChanges,
})
) {
continue
}
let nextG =
currentCandidate.g + move.segmentLength * this.DISTANCE_TO_COST
if (
traceIndex !== this.centerTraceIndex &&
options.centerlinePortIds &&
options.centerlinePortIds.length > 0
) {
nextG +=
this.computeTraceAlignmentCost(
traceIndex,
options.centerlinePortIds,
move.nextState.portId,
) * this.BUS_ALIGNMENT_COST_FACTOR
}
const nextH = this.computeTraceHeuristic(move.nextState)
const nextF =
nextG +
nextH *
(traceIndex === this.centerTraceIndex
? 1
: this.BUS_HEURISTIC_WEIGHT)
const nextStateKey = this.getTraceStateKey(move.nextState)
const existingBestCost = bestCostByTraceState.get(nextStateKey)
if (
existingBestCost !== undefined &&
nextG >= existingBestCost - BUS_CANDIDATE_EPSILON
) {
continue
}
bestCostByTraceState.set(nextStateKey, nextG)
candidateQueue.queue({
state: move.nextState,
g: nextG,
h: nextH,
f: nextF,
})
}
}
return undefined
}
private startNextTraceSearch() {
while (!this.busState.activeTraceSearch && !this.solved && !this.failed) {
if (this.busState.phase === "center") {
this.initializeTraceSearch(this.centerTraceIndex)
return
}
if (this.busState.phase === "outer") {
if (
this.busState.currentOuterTraceCursor >= this.outerTraceIndices.length
) {
this.busState.phase = "done"
this.solved = true
return
}
const traceIndex =
this.outerTraceIndices[this.busState.currentOuterTraceCursor]!
this.initializeTraceSearch(traceIndex)
return
}
if (this.busState.phase === "done") {
this.solved = true
return
}
}
}
private initializeTraceSearch(traceIndex: number) {
const routeId = this.busTraceOrder.traces[traceIndex]!.routeId
const startState = this.createStartingTraceState(routeId)
const startPortId = this.problem.routeStartPort[routeId]!
const goalPortId = this.problem.routeEndPort[routeId]!
if (
traceIndex !== this.centerTraceIndex &&
(this.busState.reservedPortIds.has(startPortId) ||
this.busState.reservedPortIds.has(goalPortId))
) {
this.failed = true
this.error = `Bus trace ${this.getTraceConnectionId(traceIndex)} starts or ends on a reserved port`
return
}
if (startState.atGoal) {
this.finalizeSolvedTrace(traceIndex, startState, 0)
return
}
const candidateQueue = new MinHeap<TraceSearchCandidate>(
[],
compareTraceCandidates,
)
const bestCostByTraceState = new Map<string, number>()
const startH = this.computeTraceHeuristic(startState)
candidateQueue.queue({
state: startState,
g: 0,
h: startH,
f:
startH *
(traceIndex === this.centerTraceIndex ? 1 : this.BUS_HEURISTIC_WEIGHT),
})
bestCostByTraceState.set(this.getTraceStateKey(startState), 0)
this.busState.activeTraceSearch = {
traceIndex,
routeId,
candidateQueue,
bestCostByTraceState,
}
}
private resetCommittedSolution() {
const { topology, state } = this
state.portAssignment.fill(-1)
state.regionSegments = Array.from(
{ length: topology.regionCount },
() => [],
)
state.regionIntersectionCaches = Array.from(
{ length: topology.regionCount },
() => createEmptyRegionIntersectionCache(),
)
state.currentRouteId = undefined
state.currentRouteNetId = undefined
state.unroutedRoutes = []
state.candidateQueue.clear()
state.goalPortId = -1
state.ripCount = 0
state.regionCongestionCost.fill(0)
}
private createStartingTraceState(routeId: RouteId): BusTraceState {
const startPortId = this.problem.routeStartPort[routeId]!
const goalPortId = this.problem.routeEndPort[routeId]!
if (startPortId === goalPortId) {
return {
routeId,
portId: startPortId,
atGoal: true,
}
}
const nextRegionId = this.getStartingNextRegionId(routeId, startPortId)
if (nextRegionId === undefined) {
throw new Error(`Bus route ${routeId} has no incident start region`)
}
return {
routeId,
portId: startPortId,
nextRegionId,
atGoal: false,
}
}
private getAvailableTraceMoves(traceState: BusTraceState) {
if (traceState.atGoal || traceState.nextRegionId === undefined) {
return [] as Array<{
nextState: BusTraceState
segmentLength: number
}>
}
const routeId = traceState.routeId
const goalPortId = this.problem.routeEndPort[routeId]!
const currentNetId = this.problem.routeNet[routeId]!
const currentRegionId = traceState.nextRegionId
const moves: Array<{
nextState: BusTraceState
segmentLength: number
}> = []
for (const neighborPortId of this.topology.regionIncidentPorts[
currentRegionId
] ?? []) {
if (neighborPortId === traceState.portId) {
continue
}
if (this.problem.portSectionMask[neighborPortId] === 0) {
continue
}
if (this.isPortReservedForDifferentBusNet(currentNetId, neighborPortId)) {
continue
}
const segmentLength = getPortDistance(
this.topology,
traceState.portId,
neighborPortId,
)
if (neighborPortId === goalPortId) {
moves.push({
nextState: {
routeId,
portId: goalPortId,
atGoal: true,
prevState: traceState,
},
segmentLength,
})
continue
}
const nextRegionId =
this.topology.incidentPortRegion[neighborPortId]?.[0] ===
currentRegionId
? this.topology.incidentPortRegion[neighborPortId]?.[1]
: this.topology.incidentPortRegion[neighborPortId]?.[0]
if (
nextRegionId === undefined ||
this.isRegionReservedForDifferentBusNet(currentNetId, nextRegionId)
) {
continue
}
moves.push({
nextState: {
routeId,
portId: neighborPortId,
nextRegionId,
atGoal: false,
prevState: traceState,
},
segmentLength,
})
}
return moves
}
private isMoveBlockedByBusConstraints(
traceIndex: number,
move: { nextState: BusTraceState; segmentLength: number },
options?: {
reservedPortIds?: ReadonlySet<PortId>
centerlinePortIds?: readonly PortId[]
centerlineHasLayerChanges?: boolean
},
) {
const reservedPortIds =
options?.reservedPortIds ?? this.busState.reservedPortIds
if (reservedPortIds.has(move.nextState.portId)) {
return true
}
if (traceIndex === this.centerTraceIndex) {
return false
}
if (
!(
options?.centerlineHasLayerChanges ??
this.busState.centerlineHasLayerChanges
) &&
this.doesMoveChangeLayers(move)
) {
return true
}
const centerlinePortIds =
options?.centerlinePortIds ?? this.busState.centerlinePortIds
if (!centerlinePortIds || centerlinePortIds.length === 0) {
return true
}
const centerPortId = centerlinePortIds[centerlinePortIds.length - 1]
const traceMetadata = this.busTraceOrder.traces[traceIndex]!
const fromPortId = move.nextState.prevState?.portId
if (centerPortId === undefined || fromPortId === undefined) {
return true
}
if (
!this.isPortOnExpectedSideOfCenterline(
traceMetadata.signedIndexFromCenter,
centerPortId,
move.nextState.portId,
)
) {
return true
}
return this.doesTraceMoveIntersectCenterline(
fromPortId,
move.nextState.portId,
centerlinePortIds,
)
}
private isPortOnExpectedSideOfCenterline(
signedIndexFromCenter: number,
centerPortId: PortId,
candidatePortId: PortId,
) {
if (signedIndexFromCenter === 0) {
return true
}
const centerProjection = getPortProjection(
this.topology,
centerPortId,
this.busTraceOrder.normalX,
this.busTraceOrder.normalY,
)
const candidateProjection = getPortProjection(
this.topology,
candidatePortId,
this.busTraceOrder.normalX,
this.busTraceOrder.normalY,
)
return signedIndexFromCenter < 0
? candidateProjection <= centerProjection + BUS_CANDIDATE_EPSILON
: candidateProjection >= centerProjection - BUS_CANDIDATE_EPSILON
}
private doesTraceMoveIntersectCenterline(
fromPortId: PortId,
toPortId: PortId,
centerlinePortIds: readonly PortId[],
) {
for (let index = 1; index < centerlinePortIds.length; index++) {
if (
doSegmentsConflict(
this.topology,
fromPortId,
toPortId,
centerlinePortIds[index - 1]!,
centerlinePortIds[index]!,
)
) {
return true
}
}
return false
}
private computeTraceAlignmentCost(
traceIndex: number,
centerlinePortIds: readonly PortId[],
candidatePortId: PortId,
) {
const traceMetadata = this.busTraceOrder.traces[traceIndex]!
const targetDistance =
this.BUS_TRACE_SEPARATION * traceMetadata.distanceFromCenter
const actualDistance = getWeightedDistanceFromPortToPolyline(
this.topology,
candidatePortId,
centerlinePortIds,
this.BUS_LAYER_DISTANCE_COST,
)
return Math.abs(actualDistance - targetDistance)
}
private doesMoveChangeLayers(move: {
nextState: BusTraceState
segmentLength: number
}) {
const fromPortId = move.nextState.prevState?.portId
if (fromPortId === undefined) {
return false
}
return (
this.topology.portZ[fromPortId] !==
this.topology.portZ[move.nextState.portId]
)
}
private doesPathChangeLayers(portIds: readonly PortId[]) {
for (let index = 1; index < portIds.length; index++) {
if (
this.topology.portZ[portIds[index - 1]!] !==
this.topology.portZ[portIds[index]!]
) {
return true
}
}
return false
}
private computeTraceHeuristic(traceState: BusTraceState) {
if (traceState.atGoal) {
return 0
}
return this.problemSetup.portHCostToEndOfRoute[
traceState.portId * this.problem.routeCount + traceState.routeId
]
}
private isPortReservedForDifferentBusNet(
currentNetId: NetId,
portId: PortId,
) {
const reservedNetIds = this.problemSetup.portEndpointNetIds[portId]
if (!reservedNetIds) {
return false
}
for (const reservedNetId of reservedNetIds) {
if (reservedNetId !== currentNetId) {
return true
}
}
return false
}
private isRegionReservedForDifferentBusNet(
currentNetId: NetId,
regionId: RegionId,
) {
const reservedNetId = this.problem.regionNetId[regionId]
return reservedNetId !== -1 && reservedNetId !== currentNetId
}
private getTracePathPortIds(traceState: BusTraceState) {
const portIds: PortId[] = []
let cursor: BusTraceState | undefined = traceState
while (cursor) {
portIds.unshift(cursor.portId)
cursor = cursor.prevState
}
return portIds
}
private getTraceSegments(traceState: BusTraceState) {
const pathStates: BusTraceState[] = []
let cursor: BusTraceState | undefined = traceState
while (cursor) {
pathStates.unshift(cursor)
cursor = cursor.prevState
}
const segments: Array<{
regionId: RegionId
fromPortId: PortId
toPortId: PortId
}> = []
for (let index = 1; index < pathStates.length; index++) {
const previousState = pathStates[index - 1]!
const currentState = pathStates[index]!
if (previousState.nextRegionId === undefined) {
throw new Error(
`Bus route ${traceState.routeId} is missing a region before port ${currentState.portId}`,
)
}
segments.push({
regionId: previousState.nextRegionId,
fromPortId: previousState.portId,
toPortId: currentState.portId,
})
}
return segments
}
private commitSolvedTrace(traceState: BusTraceState) {
const routeId = traceState.routeId
const routeNetId = this.problem.routeNet[routeId]!