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
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

  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