mosis24DEVS/models/seq_poly/plot_100
Yentl Van Tendeloo 66a6860316 Initial commit
2016-08-04 17:38:43 +02:00

11 lines
444 B
Text

set terminal postscript enhanced colour portrait size 6, 6
set title "Performance of three schedulers"
set key bottom right
set yrange [90:120]
set ylabel "Time taken (%)"
set xlabel "Number of collisions (%)"
set out 'seq_poly_zoom.eps'
plot 'setSchedulerHeapSet_100' using 1:($2/$4*100) title 'HeapSet' w l lw 5, 'setSchedulerMinimalList_100' using 1:($2/$4*100) title 'Minimal List' w l lw 5, 100 w l lw 5 title 'Polymorphic'
unset yrange