Initial commit

This commit is contained in:
Yentl Van Tendeloo 2016-08-04 17:38:43 +02:00
commit 66a6860316
407 changed files with 1254365 additions and 0 deletions

11
models/seq_poly/plot_100 Normal file
View file

@ -0,0 +1,11 @@
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