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个字符

12345678910111213
  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