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.

crossover.h 213B

  1. #ifndef CROSSOVER_H_INCLUDED
  2. #define CROSSOVER_H_INCLUDED
  3. #define NO_CROSSOVER 0
  4. #define UNIFORM_CROSSOVER 1
  5. #define MAJORITY_VOTE_CROSSOVER 2
  6. #define K_POINT_CROSSOVER 4
  7. #endif // CROSSOVER_H_INCLUDED