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

  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