set term svg
set output "efficiency.svg"
set grid
set title "Efficiency Plot"
set key autotitle columnhead
set yrange [0:]
set xlabel 'Num. Threads'
set xrange [0:]
set ylabel 'Efficiency'
plot 'results_efficiency.data' u 1:2 w lp t 'rust-ssp', 'results_efficiency.data' u 1:3 w lp t 'rayon', 'results_efficiency.data' u 1:4 w lp t 'ppl', 'results_efficiency.data' u 1:5 w lp t 'ppl-tp'

