Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
mcapi::get().get_actors() is called in CommunicationDeterminismChecker::real_run()
authorEhsan Azimi <eazimi@ehsan.irisa.fr>
Mon, 30 Nov 2020 08:39:17 +0000 (09:39 +0100)
committerEhsan Azimi <eazimi@ehsan.irisa.fr>
Mon, 30 Nov 2020 08:39:17 +0000 (09:39 +0100)
src/mc/checker/CommunicationDeterminismChecker.cpp

index 9c13a66..85ba0f5 100644 (file)
@@ -443,7 +443,7 @@ void CommunicationDeterminismChecker::real_run()
 
       if (visited_state == nullptr) {
         /* Get enabled actors and insert them in the interleave set of the next state */
-        auto actors = mcapi::get().mc_get_remote_simulation().actors();
+        auto actors = mcapi::get().get_actors();
         for (auto& actor : actors)
           if (mcapi::get().actor_is_enabled(actor.copy.get_buffer()->get_pid()))
             next_state->add_interleaving_set(actor.copy.get_buffer());