feat: add root entry point for the experiment

chore: add missing newline in ht.py
This commit is contained in:
lomakinae 2026-04-21 03:13:08 +03:00
parent 2833af077e
commit a7cdcd99b9
2 changed files with 7 additions and 1 deletions

View File

@ -0,0 +1,6 @@
from src.experiment import main_experiment
from src.plot import build_plots
if __name__ == "__main__":
main_experiment()
build_plots()

View File

@ -31,4 +31,4 @@ def ht_list_all(buckets):
records = []
for head in buckets:
records.extend(ll_list_all(head))
return sorted(records)
return sorted(records)