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

8
models/dist_memo/plot Normal file
View file

@ -0,0 +1,8 @@
set terminal postscript enhanced colour portrait size 6,6
set out 'dist_memo.eps'
set xlabel "Transition function load (ms)"
set ylabel "Time (s)"
set key top left
set yrange [0:110]
set title "Influence of memoization"
plot 'result_True_ok' using ($1/54):(($2+$3+$4)/3) w l lw 5 title 'With memoization', 'result_False_ok' using ($1/54):(($2+$3+$4)/3) w l lw 5 title 'Without memoization'