Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move handle_waitpid from ModelChecker to RemoteProcessMemory
[simgrid.git] / src / mc / ModelChecker.hpp
index 551d0f030730da4aedc6943b648eaa909b910de5..d75a38d4ba29a97618a6d2ff3a6312160d814bb1 100644 (file)
@@ -19,7 +19,6 @@ namespace simgrid::mc {
  */
 class ModelChecker {
   std::unique_ptr<RemoteProcessMemory> remote_process_memory_;
-  Exploration* exploration_ = nullptr;
 
 public:
   ModelChecker(ModelChecker const&) = delete;
@@ -28,10 +27,6 @@ public:
 
   RemoteProcessMemory& get_remote_process_memory() { return *remote_process_memory_; }
 
-  Exploration* get_exploration() const { return exploration_; }
-  void set_exploration(Exploration* exploration) { exploration_ = exploration; }
-
-  void handle_waitpid();                                 // FIXME move to RemoteApp
   bool handle_message(const char* buffer, ssize_t size); // FIXME move to RemoteApp
 };