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.

complexity-ga.h 838B

  1. #ifndef COMPLEXITY_GA_H_INCLUDED
  2. #define COMPLEXITY_GA_H_INCLUDED
  3. #include <string>
  4. #include <fstream>
  5. #include <sstream>
  6. #include "heuristics/GA.h"
  7. #include "analysis/analysis.h"
  8. #include "experiences/crossover-rate.h"
  9. void study_complexity_of_ga(std::default_random_engine& randomizer, int option, int argc, char** argv);
  10. void study_complexity_of_ga_sample(std::default_random_engine& randomizer, std::string filename, int n_initial, int n_final, int n_step=10, bool displaying=true);
  11. void study_complexity_of_ga_global_sample(std::default_random_engine& randomizer, std::string filename, int n_initial, int n_final, int n_step=10, bool displaying=true);
  12. void study_complexity_of_ga_treat(std::default_random_engine& randomizer, std::string filename, int n_initial, int n_final);
  13. #endif // COMPLEXITY_GA_H_INCLUDED