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.

RLS.h 219B

5 år sedan
123456789101112131415161718
  1. #ifndef RLS_H
  2. #define RLS_H
  3. #include <iostream>
  4. #include "SearchHeuristic.h"
  5. class RLS : public SearchHeuristic
  6. {
  7. public:
  8. Result run();
  9. protected:
  10. private:
  11. };
  12. #endif // RLS_H