# Analysis description 
set encoding iso_8859_1
set terminal x11
set size 1,0.5
set term postscript enhanced portrait "Helvetica" 12
#set decimalsign ","
#set decimalsign locale "fr_FR"

set ylabel "execution times (in s)" 
set xlabel "polynomial's degree"
#set format x "%6.4e"
set format x "%2.0e"
#set format x "%2.0t{/Symbol \327}10^{%L}"
set logscale x
set logscale y

#set key on outside left bmargin
set key on inside left top
set style line 1 lc rgb '#000c16' lt 1 lw 2 pt 4 ps 1.5   # --- blue
set style line 2 lc rgb '#000c16' lt 1 lw 2 pt 5 ps 1.5   # --- red
set style line 3 lc rgb '#000c16' lt 1 lw 2 pt 6 ps 1.5   # --- red
set style line 4 lc rgb '#000c16' lt 1 lw 2 pt 7 ps 1.5   # --- red

set style line 2 lc rgb '#000c16' lt 1 lw 2 pt 5 ps 1.5   # --- red
plot  'EA_DK.txt'index 0 using 1:2 t "EA with sparse polynomials"      with linespoints ls 1,\
'EA_DK.txt'index 0 using 1:4 t "EA with full polynomials"      with linespoints ls 2,\
 'EA_DK.txt'index 1 using 1:2 t "DK with sparse polynomials"      with linespoints ls 3,\
 'EA_DK.txt'index 1 using 1:4 t "DK with full polynomials"      with linespoints ls 4