Spaces:
Sleeping
Sleeping
Update lineage_visualizer.py
Browse files- lineage_visualizer.py +1 -2
lineage_visualizer.py
CHANGED
|
@@ -1,8 +1,7 @@
|
|
| 1 |
-
# lineage_visualizer_rft.py
|
| 2 |
# Author: Liam Grinstead
|
| 3 |
# SVG tree with per-node tier and overlay labels (pure RFT provenance)
|
| 4 |
|
| 5 |
-
from
|
| 6 |
|
| 7 |
def _row_positions(n: int, width: int, y: int):
|
| 8 |
if n <= 0: return []
|
|
|
|
|
|
|
| 1 |
# Author: Liam Grinstead
|
| 2 |
# SVG tree with per-node tier and overlay labels (pure RFT provenance)
|
| 3 |
|
| 4 |
+
from lineage_tracker import get_ancestors, get_descendants
|
| 5 |
|
| 6 |
def _row_positions(n: int, width: int, y: int):
|
| 7 |
if n <= 0: return []
|