figs/fig_S7.py [75:83]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    for idx, m in enumerate(plot_method_names):
        res_name = method_idx_to_res_name[idx]
        if res_name not in res_h.objective_at_true_best:
            continue  # Not run on this problem
        Y = np.log(res_h.objective_at_true_best[res_name] - (-3.32237))
        f = Y.mean(axis=0)
        sem = Y.std(axis=0) / np.sqrt(Y.shape[0])
        x = np.arange(1, 201)
        color = plot_colors[m]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



figs/fig_S7.py [120:128]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    for idx, m in enumerate(plot_method_names):
        res_name = method_idx_to_res_name[idx]
        if res_name not in res_h.objective_at_true_best:
            continue  # Not run on this problem
        Y = np.log(res_h.objective_at_true_best[res_name] - (-3.32237))
        f = Y.mean(axis=0)
        sem = Y.std(axis=0) / np.sqrt(Y.shape[0])
        x = np.arange(1, 201)
        color = plot_colors[m]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



