set term svg
set output "result_time.svg"
set grid
set title "Completion Time Plot"
set key autotitle columnhead
set yrange [0:]
set xlabel 'Num. Threads'
set xrange [0:]
set ylabel 'Sec.'
plot 'results_times.data' u 1:2 w lp t 'rust-ssp', 'results_times.data' u 1:3 w lp t 'rayon', 'results_times.data' u 1:4 w lp t 'std-threads', 'results_times.data' u 1:5 w lp t 'ppl', 'results_times.data' u 1:6 w lp t 'ppl-tp'
