"api/git@forgeb1.univ-lehavre.fr:acjj/fullstack-lab.git" n'existait pas sur "5981bdc9db1f11adbdc41a7abd51d6d9adc9f1c6"
Newer
Older
set terminal pngcairo size 1000,600 enhanced font 'Arial,12'
set title "Durée Bellman-Ford sur l'ensemble des graphes"
set xlabel "Tests"
set ylabel "Durée (ms)"
set grid ytics
# Si tu veux un log scale sur Y (optionnel)
# set logscale y
# set yrange [1:1000] # ajuste selon tes valeurs
plot 'averageDistanceOf1000Node.dat' using 1:2 with linespoints title 'Normal', \
'averageDistanceOf1000NodeForBarabasiAlbertGraph.dat' using 1:2 with linespoints title 'BarabasiAlbert', \
'averageDistanceOf1000NodeForRandomGraph.dat' using 1:2 with linespoints title 'Random'