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.

EA.h 300B

  1. #ifndef EA_H
  2. #define EA_H
  3. #include <random>
  4. #include "GA.h"
  5. class EA : public GA {
  6. public:
  7. EA(int mu, int lda, int selection, double proba, std::default_random_engine& randomizer) : GA(mu, lda, selection, proba, 0., NO_CROSSOVER, GA_V1, randomizer) {};
  8. };
  9. #endif // EA_H