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.

RLS.h 219B

  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