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:
jedarden 2026-04-06 18:34:18 -04:00
parent 80db6c6026
commit 0a8a3288c0

View file

@ -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 {