Run data and code

This commit is contained in:
Jai Parera
2025-06-13 16:11:56 -07:00
parent 2ad40946d1
commit c8a0b18abf
8 changed files with 1321 additions and 0 deletions

7
run/print.py Normal file
View File

@@ -0,0 +1,7 @@
import json
from pathlib import Path
for file in Path("results/compressed_tree/").glob("*.json"):
with open(file, "r") as f:
s = json.load(f)
print(max(s["paths"])+1)