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
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

algo-complexity.h 477B

vor 5 Jahren
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