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

5 роки тому
1234567891011121314
  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