Skip to content

Commit e698da5

Browse files
committed
feat(visualization): implement testing suite and refactor monolith for modularity
1 parent 14141db commit e698da5

15 files changed

Lines changed: 650 additions & 785 deletions

modules/visualization/data_processor.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,9 @@ def enrich_data(nodes):
160160
for n in nodes:
161161
if n["id"] == "cadence_slayer" or "slayer" in n["id"].lower():
162162
n["tier"] = max_bfs_tier + 1
163+
elif n["id"] not in tiers and "tier" in n:
164+
# Preserve tier for newly created nodes (like sustainable variants)
165+
pass
163166
else:
164167
n["tier"] = tiers.get(n["id"], 0)
165168

modules/visualization/lattice_rendering copy.js

Lines changed: 0 additions & 287 deletions
This file was deleted.

0 commit comments

Comments
 (0)