@@ -14,7 +14,7 @@ set ylabel "Temps amorti" font "Helvetica,24"
# Nom du fichier Postscript en sortie
set output 'dynamic_array_amortized_time_alpha_2.pdf'
plot [0:1000000][0:600] 'dynamic_array_time_c.plot' using 1:3 w lines title "Amortized C", 'dynamic_array_time_cpp.plot' using 1:3 w lines title "Amortized C++", 'dynamic_array_time_java.plot' using 1:3 w lines title "Amortized JAVA", 'dynamic_array_time_python.plot' using 1:3 w lines title "Amortized Python"
plot [0:1000000][0:600] 'dynamic_array_time_c_alpha_2.plot' using 1:3 w lines title "Amortized C", 'dynamic_array_time_cpp_alpha_2.plot' using 1:3 w lines title "Amortized C++", 'dynamic_array_time_java_alpha_2.plot' using 1:3 w lines title "Amortized JAVA", 'dynamic_array_time_python_alpha_2.plot' using 1:3 w lines title "Amortized Python"
########### Affichage de l'espace mémoire gaspillé ###########
...
...
@@ -25,7 +25,7 @@ set ylabel "Memoire gaspillee" font "Helvetica,24"
# Nom du fichier Postscript en sortie
set output 'dynamic_array_wasted_memory_alpha_2.pdf'
plot 'dynamic_array_memory_c.plot' using 1:2 w lines title "Espace memoire inutilise C", 'dynamic_array_memory_python.plot' using 1:2 w lines title "Espace memoire inutilise Python"
plot 'dynamic_array_memory_c_alpha_2.plot' using 1:2 w lines title "Espace memoire inutilise C", 'dynamic_array_memory_python_alpha_2.plot' using 1:2 w lines title "Espace memoire inutilise Python"
########### Affichage du nombre de copies effectuées ###########
...
...
@@ -36,4 +36,4 @@ set ylabel "Nombre de copies effectuees" font "Helvetica,24"
# Nom du fichier Postscript en sortie
set output 'dynamic_array_copy_alpha_2.pdf'
plot 'dynamic_array_copy_c.plot' using 1:2 w boxes title "Nombre de copies de valeurs effectuees C", 'dynamic_array_copy_python.plot' using 1:2 w boxes title "Nombre de copies de valeurs effectuees Python"
\ No newline at end of file
plot 'dynamic_array_copy_c_alpha_2.plot' using 1:2 w boxes title "Nombre de copies de valeurs effectuees C", 'dynamic_array_copy_python_alpha_2.plot' using 1:2 w boxes title "Nombre de copies de valeurs effectuees Python"