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文字以内のものにしてください。

EA.h 300B

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