results: algoritm comparison plots and plotting scripts

This commit is contained in:
Erik Fabrizzi
2025-11-07 14:47:12 +01:00
parent bac7118ba6
commit b84118d944
20 changed files with 234 additions and 0 deletions

View File

@@ -3,6 +3,8 @@ import subprocess
from datetime import datetime
################ HELPER FUNCTIONS ################
def load_template(template_path: str):
output_template = ""
with open(template_path, "r") as handle:
@@ -14,6 +16,7 @@ def write_batch(batch_fpath: str, batch_content: str):
with open(batch_fpath, "w") as handle:
_ = handle.write(batch_content)
################### SETUP DIRS ###################
output_dir = os.getcwd()+"/output/"
err_dir = os.getcwd()+"/error/"