fix: replace unused linkID with blank identifier in spatial_weights.go
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
80db6c6026
commit
0a8a3288c0
1 changed files with 1 additions and 1 deletions
|
|
@ -598,7 +598,7 @@ func (l *SpatialWeightLearner) GetWeightStats() map[string]interface{} {
|
|||
maxWeight := 0.0
|
||||
zoneCounts := make(map[[2]int]int)
|
||||
|
||||
for linkID, zones := range l.weightCache {
|
||||
for _, zones := range l.weightCache {
|
||||
linkHasWeights := false
|
||||
for zoneX, rows := range zones {
|
||||
for zoneY, weight := range rows {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue