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 символов.

algo-complexity.h 477B

  1. #ifndef ALGO_COMPLEXITY_H_INCLUDED
  2. #define ALGO_COMPLEXITY_H_INCLUDED
  3. #include <string>
  4. #include <vector>
  5. #include <fstream>
  6. #include "analysis.h"
  7. std::vector<Statistic> compute_complexity(std::default_random_engine& randomizer, SearchHeuristic* algo, int n_initial, int n_final, int n_step=1, int nb_tests=100, double slq=-1, bool displaying=true);
  8. void save_in_file(std::string namefile, std::vector<Statistic> stats);
  9. #endif // ALGO_COMPLEXITY_H_INCLUDED