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.

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