diff --git a/python_scripts/burn_in_time.py b/python_scripts/burn_in_time.py index 9625565..2549ca0 100644 --- a/python_scripts/burn_in_time.py +++ b/python_scripts/burn_in_time.py @@ -17,8 +17,6 @@ plt.rcParams.update(params) def plot_1_0(): files = [ - # "data/hp/burn_in_time/unordered_1_0_1421110368.txt", - # "data/hp/burn_in_time/ordered_1_0_611577739.txt", "data/hp/burn_in_time/unordered_1_0.txt", "data/hp/burn_in_time/ordered_1_0.txt", ] @@ -65,8 +63,6 @@ def plot_1_0(): def plot_2_4(): files = [ - # "data/hp/burn_in_time/unordered_2_4_1212892317.txt", - # "data/hp/burn_in_time/ordered_2_4_2408603856.txt", "data/hp/burn_in_time/unordered_2_4.txt", "data/hp/burn_in_time/ordered_2_4.txt", ] diff --git a/python_scripts/timing.py b/python_scripts/timing.py index 190f7bb..5ab66ab 100644 --- a/python_scripts/timing.py +++ b/python_scripts/timing.py @@ -17,6 +17,7 @@ params = { } plt.rcParams.update(params) + def plot_timing(indir, outdir): if not (path := Path(outdir)).exists(): makedirs(path) @@ -25,14 +26,10 @@ def plot_timing(indir, outdir): "lattice_sizes.txt", "sample_sizes.txt", ] - labels = [ - "Lattice sizes", - "Sample sizes", - ] xlabels = ["Lattice size", "Sampling size"] outfiles = ["lattice_size.pdf", "sample_sizes.pdf"] - for file, label, xlabel, outfile in zip(files, labels, xlabels, outfiles): + for file, xlabel, outfile in zip(files, xlabels, outfiles): figure1, ax1 = plt.subplots() x = [] parallel = []