\ set terminal svg background "white" ;\ set output "Out.times.svg" ;\ set tics out ;\ set title "Program running time as function of number of threads" ;\ set xlabel "number of threads" ;\ set ylabel "real time in seconds" ;\ set xtics 1 ;\ plot [0.9:4.1][0:] \ "out.times.data" index 0 with linespoints title "mcs mono"\ ,"out.times.data" index 1 with linespoints title "clang -Ofast"\ ,"out.times.data" index 2 with linespoints title "clang++ -Ofast"\ ,"out.times.data" index 3 with linespoints title "august"\ ;\