src/plot_relaxed_pareto.py [69:77]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        plt.xlabel('Gamma')
        plt.ylabel(f'Pop Error ({pop_error_string})')
        plt.show()

    # Multi-trajectory plot
    if use_input_commands:
        input('Next plot...')
    figures.append(plt.figure())
    colors = [np.arange(1, total_steps) for total_steps in total_steps_per_gamma]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/plot_relaxed_pareto.py [139:147]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            plt.xlabel('Gamma')
            plt.ylabel(f'Pop Error ({pop_error_string})')
            plt.show()

        # Validation Trajectory
        if use_input_commands:
            input('Next plot...')
        figures.append(plt.figure())
        colors = [np.arange(1, total_steps) for total_steps in total_steps_per_gamma]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



