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-ea.h 807B

5 years ago
12345678910111213141516171819
  1. #ifndef COMPLEXITY_EA_H_INCLUDED
  2. #define COMPLEXITY_EA_H_INCLUDED
  3. #include <string>
  4. #include <fstream>
  5. #include <sstream>
  6. #include <iostream>
  7. #include "problems/MasterMind.h"
  8. #include "heuristics/EA.h"
  9. #include "analysis/analysis.h"
  10. void study_complexity_of_ea(std::default_random_engine& randomizer, int option, int argc, char** argv);
  11. void study_complexity_of_ea_sample(std::default_random_engine& randomizer, std::string filename, int n_initial, int n_final, int n_step, bool displaying=true);
  12. void study_complexity_of_ea_filter(std::string input, std::string output, int filtered_n, int filtered_mu, int filtered_lda);
  13. void study_complexity_of_ea_treat(std::default_random_engine& randomizer, std::string filename, int n_initial, int n_final);
  14. #endif // COMPLEXITY_EA_H_INCLUDED