Projet du cours MPRI 2.24.2 "Résolution de problèmes d'optimisation avec heuristiques de recherche" : https://wikimpri.dptinfo.ens-cachan.fr/doku.php?id=cours:c-2-24-2
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

draw.gpl 872B

  1. set datafile separator ';'
  2. # Set first two line styles to blue (#0060ad) and red (#dd181f)
  3. set style line 1 \
  4. linecolor rgb '#0060ad' \
  5. linetype 1 linewidth 2 \
  6. pointtype 7 pointsize 1.5
  7. set style line 2 \
  8. linecolor rgb '#dd181f' \
  9. linetype 1 linewidth 2 \
  10. dashtype 3 \
  11. pointtype 5 pointsize 1.5
  12. set style line 3 \
  13. linecolor rgb '#0060ad' \
  14. linetype 1 linewidth 2 \
  15. pointtype 7 pointsize 1.5
  16. set style line 4 \
  17. linecolor rgb '#00ff00' \
  18. linetype 1 linewidth 2 \
  19. pointtype 7 pointsize 1.5
  20. set ylabel "proba"
  21. set xlabel "n"
  22. plot 'complete-crossover-proba-filter.csv' using 1:2 with lines linestyle 1, \
  23. '' using 1:3 with lines linestyle 2, \
  24. '' using 1:4 with lines linestyle 3, \
  25. '' using 1:5 with lines linestyle 4