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 kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

5 år sedan
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