Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
f21297cb7d514323cd7f661f25138d10e8917a0e
[simgrid.git] / src / mc / explo / DFSExplorer.cpp
1 /* Copyright (c) 2016-2023. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "src/mc/explo/DFSExplorer.hpp"
7 #include "src/mc/mc_config.hpp"
8 #include "src/mc/mc_exit.hpp"
9 #include "src/mc/mc_private.hpp"
10 #include "src/mc/mc_record.hpp"
11 #include "src/mc/transition/Transition.hpp"
12
13 #if SIMGRID_HAVE_STATEFUL_MC
14 #include "src/mc/VisitedState.hpp"
15 #endif
16
17 #include "src/xbt/mmalloc/mmprivate.h"
18 #include "xbt/log.h"
19 #include "xbt/string.hpp"
20 #include "xbt/sysdep.h"
21
22 #include <cassert>
23 #include <cstdio>
24
25 #include <algorithm>
26 #include <memory>
27 #include <string>
28 #include <unordered_set>
29 #include <vector>
30
31 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_dfs, mc, "DFS exploration algorithm of the model-checker");
32
33 namespace simgrid::mc {
34
35 xbt::signal<void(RemoteApp&)> DFSExplorer::on_exploration_start_signal;
36 xbt::signal<void(RemoteApp&)> DFSExplorer::on_backtracking_signal;
37
38 xbt::signal<void(State*, RemoteApp&)> DFSExplorer::on_state_creation_signal;
39
40 xbt::signal<void(State*, RemoteApp&)> DFSExplorer::on_restore_system_state_signal;
41 xbt::signal<void(RemoteApp&)> DFSExplorer::on_restore_initial_state_signal;
42 xbt::signal<void(Transition*, RemoteApp&)> DFSExplorer::on_transition_replay_signal;
43 xbt::signal<void(Transition*, RemoteApp&)> DFSExplorer::on_transition_execute_signal;
44
45 xbt::signal<void(RemoteApp&)> DFSExplorer::on_log_state_signal;
46
47 void DFSExplorer::check_non_termination(const State* current_state)
48 {
49 #if SIMGRID_HAVE_STATEFUL_MC
50   for (auto const& state : stack_) {
51     if (state->get_system_state()->equals_to(*current_state->get_system_state(),
52                                              *get_remote_app().get_remote_process_memory())) {
53       XBT_INFO("Non-progressive cycle: state %ld -> state %ld", state->get_num(), current_state->get_num());
54       XBT_INFO("******************************************");
55       XBT_INFO("*** NON-PROGRESSIVE CYCLE DETECTED ***");
56       XBT_INFO("******************************************");
57       XBT_INFO("Counter-example execution trace:");
58       for (auto const& s : get_textual_trace())
59         XBT_INFO("  %s", s.c_str());
60       XBT_INFO("You can debug the problem (and see the whole details) by rerunning out of simgrid-mc with "
61                "--cfg=model-check/replay:'%s'",
62                get_record_trace().to_string().c_str());
63       log_state();
64
65       throw McError(ExitStatus::NON_TERMINATION);
66     }
67   }
68 #endif
69 }
70
71 RecordTrace DFSExplorer::get_record_trace() // override
72 {
73   RecordTrace res;
74
75   if (const auto trans = stack_.back()->get_transition_out(); trans != nullptr)
76     res.push_back(trans.get());
77   for (const auto* state = stack_.back().get(); state != nullptr; state = state->get_parent_state().get())
78     if (state->get_transition_in() != nullptr)
79       res.push_front(state->get_transition_in().get());
80
81   return res;
82 }
83
84 void DFSExplorer::restore_stack(std::shared_ptr<State> state)
85 {
86   stack_.clear();
87   execution_seq_     = odpor::Execution();
88   auto current_state = state;
89   stack_.emplace_front(current_state);
90   // condition corresponds to reaching initial state
91   while (current_state->get_parent_state() != nullptr) {
92     current_state = current_state->get_parent_state();
93     stack_.emplace_front(current_state);
94   }
95   XBT_DEBUG("Replaced stack by %s", get_record_trace().to_string().c_str());
96   if (reduction_mode_ == ReductionMode::sdpor || reduction_mode_ == ReductionMode::odpor) {
97     // NOTE: The outgoing transition for the top-most
98     // state of the  stack refers to that which was taken
99     // as part of the last trace explored by the algorithm.
100     // Thus, only the sequence of transitions leading up to,
101     // but not including, the last state must be included
102     // when reconstructing the Exploration for SDPOR.
103     for (auto iter = std::next(stack_.begin()); iter != stack_.end(); ++iter) {
104       execution_seq_.push_transition((*iter)->get_transition_in());
105     }
106     XBT_DEBUG("Replaced SDPOR/ODPOR execution to reflect the new stack");
107   }
108 }
109
110 void DFSExplorer::log_state() // override
111 {
112   on_log_state_signal(get_remote_app());
113   XBT_INFO("DFS exploration ended. %ld unique states visited; %lu backtracks (%lu transition replays, %lu states "
114            "visited overall)",
115            State::get_expanded_states(), backtrack_count_, visited_states_count_,
116            Transition::get_replayed_transitions());
117   Exploration::log_state();
118 }
119
120 void DFSExplorer::run()
121 {
122   on_exploration_start_signal(get_remote_app());
123   /* This function runs the DFS algorithm the state space.
124    * We do so iteratively instead of recursively, dealing with the call stack manually.
125    * This allows one to explore the call stack at will. */
126
127   while (not stack_.empty()) {
128     /* Get current state */
129     auto state = stack_.back();
130
131     XBT_DEBUG("**************************************************");
132     XBT_DEBUG("Exploration depth=%zu (state:#%ld; %zu interleaves todo)", stack_.size(), state->get_num(),
133               state->count_todo());
134
135     visited_states_count_++;
136
137     // Backtrack if we reached the maximum depth
138     if (stack_.size() > (std::size_t)_sg_mc_max_depth) {
139       if (reduction_mode_ == ReductionMode::dpor) {
140         XBT_ERROR("/!\\ Max depth of %d reached! THIS WILL PROBABLY BREAK the dpor reduction /!\\",
141                   _sg_mc_max_depth.get());
142         XBT_ERROR("/!\\ If bad things happen, disable dpor with --cfg=model-check/reduction:none /!\\");
143       } else if (reduction_mode_ == ReductionMode::sdpor || reduction_mode_ == ReductionMode::odpor) {
144         XBT_ERROR("/!\\ Max depth of %d reached! THIS **WILL** BREAK the reduction, which is not sound "
145                   "when stopping at a fixed depth /!\\",
146                   _sg_mc_max_depth.get());
147         XBT_ERROR("/!\\ If bad things happen, disable the reduction with --cfg=model-check/reduction:none /!\\");
148       } else {
149         XBT_WARN("/!\\ Max depth reached ! /!\\ ");
150       }
151       this->backtrack();
152       continue;
153     }
154
155 #if SIMGRID_HAVE_STATEFUL_MC
156     // Backtrack if we are revisiting a state we saw previously while applying state-equality reduction
157     if (visited_state_ != nullptr) {
158       XBT_DEBUG("State already visited (equal to state %ld), exploration stopped on this path.",
159                 visited_state_->original_num_ == -1 ? visited_state_->num_ : visited_state_->original_num_);
160
161       visited_state_ = nullptr;
162       this->backtrack();
163       continue;
164     }
165 #endif
166
167     if (reduction_mode_ == ReductionMode::odpor) {
168       // In the case of ODPOR, the wakeup tree for this
169       // state may be empty if we're exploring new territory
170       // (rather than following the partial execution of a
171       // wakeup tree). This corresponds to lines 9 to 13 of
172       // the ODPOR pseudocode
173       //
174       // INVARIANT: The execution sequence should be consistent
175       // with the state when seeding the tree. If the sequence
176       // gets out of sync with the state, selection will not
177       // work as we intend
178       state->seed_wakeup_tree_if_needed(execution_seq_);
179     }
180
181     // Search for the next transition
182     // next_transition returns a pair<aid_t, int>
183     // in case we want to consider multiple states (eg. during backtrack)
184     const aid_t next = reduction_mode_ == ReductionMode::odpor ? state->next_odpor_transition()
185                                                                : std::get<0>(state->next_transition_guided());
186
187     if (next < 0) { // If there is no more transition in the current state, backtrack.
188       XBT_VERB("%lu actors remain, but none of them need to be interleaved (depth %zu).", state->get_actor_count(),
189                stack_.size() + 1);
190
191       if (state->get_actor_count() == 0) {
192         get_remote_app().finalize_app();
193         XBT_VERB("Execution came to an end at %s (state: %ld, depth: %zu)", get_record_trace().to_string().c_str(),
194                  state->get_num(), stack_.size());
195       }
196
197       this->backtrack();
198       continue;
199     }
200
201     if (_sg_mc_sleep_set && XBT_LOG_ISENABLED(mc_dfs, xbt_log_priority_verbose)) {
202       XBT_VERB("Sleep set actually containing:");
203       for (auto& [aid, transition] : state->get_sleep_set())
204         XBT_VERB("  <%ld,%s>", aid, transition->to_string().c_str());
205     }
206
207     /* Actually answer the request: let's execute the selected request (MCed does one step) */
208     const auto executed_transition = state->execute_next(next, get_remote_app());
209     on_transition_execute_signal(state->get_transition_out().get(), get_remote_app());
210
211     // If there are processes to interleave and the maximum depth has not been
212     // reached then perform one step of the exploration algorithm.
213     XBT_VERB("Execute %ld: %.60s (stack depth: %zu, state: %ld, %zu interleaves)", state->get_transition_out()->aid_,
214              state->get_transition_out()->to_string().c_str(), stack_.size(), state->get_num(), state->count_todo());
215
216     /* Create the new expanded state (copy the state of MCed into our MCer data) */
217     auto next_state = std::make_shared<State>(get_remote_app(), state);
218     on_state_creation_signal(next_state.get(), get_remote_app());
219
220     if (reduction_mode_ == ReductionMode::odpor) {
221       // With ODPOR, after taking a step forward, we must
222       // assign a copy of that subtree to the next state.
223       //
224       // NOTE: We only add actions to the sleep set AFTER
225       // we've regenerated states. We must perform the search
226       // fully down a single path before we consider adding
227       // any elements to the sleep set according to the pseudocode
228       next_state->sprout_tree_from_parent_state();
229     } else {
230       /* Sleep set procedure:
231        * adding the taken transition to the sleep set of the original state.
232        * <!> Since the parent sleep set is used to compute the child sleep set, this need to be
233        * done after next_state creation */
234       XBT_DEBUG("Marking Transition >>%s<< of process %ld done and adding it to the sleep set",
235                 state->get_transition_out()->to_string().c_str(), state->get_transition_out()->aid_);
236       state->add_sleep_set(
237           state->get_transition_out()); // Actors are marked done when they are considered in ActorState
238     }
239
240     /* DPOR persistent set procedure:
241      * for each new transition considered, check if it depends on any other previous transition executed before it
242      * on another process. If there exists one, find the more recent, and add its process to the interleave set.
243      * If the process is not enabled at this  point, then add every enabled process to the interleave */
244     if (reduction_mode_ == ReductionMode::dpor) {
245       aid_t issuer_id   = state->get_transition_out()->aid_;
246       stack_t tmp_stack = stack_;
247       while (not tmp_stack.empty()) {
248         if (const State* prev_state = tmp_stack.back().get();
249             state->get_transition_out()->aid_ == prev_state->get_transition_out()->aid_) {
250           XBT_DEBUG("Simcall >>%s<< and >>%s<< with same issuer %ld", state->get_transition_out()->to_string().c_str(),
251                     prev_state->get_transition_out()->to_string().c_str(), issuer_id);
252           tmp_stack.pop_back();
253           continue;
254         } else if (prev_state->get_transition_out()->depends(state->get_transition_out().get())) {
255           XBT_VERB("Dependent Transitions:");
256           XBT_VERB("  %s (state=%ld)", prev_state->get_transition_out()->to_string().c_str(), prev_state->get_num());
257           XBT_VERB("  %s (state=%ld)", state->get_transition_out()->to_string().c_str(), state->get_num());
258
259           if (prev_state->is_actor_enabled(issuer_id)) {
260             if (not prev_state->is_actor_done(issuer_id)) {
261               prev_state->consider_one(issuer_id);
262               opened_states_.emplace_back(tmp_stack.back());
263             } else
264               XBT_DEBUG("Actor %ld is already in done set: no need to explore it again", issuer_id);
265           } else {
266             XBT_DEBUG("Actor %ld is not enabled: DPOR may be failing. To stay sound, we are marking every enabled "
267                       "transition as todo",
268                       issuer_id);
269             // If we ended up marking at least a transition, explore it at some point
270             if (prev_state->consider_all() > 0)
271               opened_states_.emplace_back(tmp_stack.back());
272           }
273           break;
274         } else {
275           XBT_VERB("INDEPENDENT Transitions:");
276           XBT_VERB("  %s (state=%ld)", prev_state->get_transition_out()->to_string().c_str(), prev_state->get_num());
277           XBT_VERB("  %s (state=%ld)", state->get_transition_out()->to_string().c_str(), state->get_num());
278         }
279         tmp_stack.pop_back();
280       }
281     } else if (reduction_mode_ == ReductionMode::sdpor) {
282       /**
283        * SDPOR Source Set Procedure:
284        *
285        * Find "reversible races" in the current execution `E` with respect
286        * to the latest action `p`. For each such race, determine one thread
287        * not contained in the backtrack set at the "race point" `r` which
288        * "represents" the trace formed by first executing everything after
289        * `r` that doesn't depend on it (`v := notdep(r, E)`) and then `p` to
290        * flip the race.
291        *
292        * The intuition is that some subsequence of `v` may enable `p`, so
293        * we want to be sure that search "in that direction"
294        */
295       execution_seq_.push_transition(std::move(executed_transition));
296       xbt_assert(execution_seq_.get_latest_event_handle().has_value(), "No events are contained in the SDPOR execution "
297                                                                        "even though one was just added");
298
299       const auto next_E_p = execution_seq_.get_latest_event_handle().value();
300       for (const auto e_race : execution_seq_.get_reversible_races_of(next_E_p)) {
301         State* prev_state  = stack_[e_race].get();
302         const auto choices = execution_seq_.get_missing_source_set_actors_from(e_race, prev_state->get_backtrack_set());
303         if (!choices.empty()) {
304           // NOTE: To incorporate the idea of attempting to select the "best"
305           // backtrack point into SDPOR, instead of selecting the `first` initial,
306           // we should instead compute all choices and decide which is best
307           const auto q =
308               std::min_element(choices.begin(), choices.end(), [](const aid_t a1, const aid_t a2) { return a1 < a2; });
309           prev_state->consider_one(*q);
310           opened_states_.emplace_back(std::move(prev_state));
311         }
312       }
313     } else if (reduction_mode_ == ReductionMode::odpor) {
314       // In the case of ODPOR, we simply observe the transition that was executed
315       // until we've reached a maximal trace
316       execution_seq_.push_transition(std::move(executed_transition));
317     }
318
319     // Before leaving that state, if the transition we just took can be taken multiple times, we
320     // need to give it to the opened states
321     if (stack_.back()->count_todo_multiples() > 0)
322       opened_states_.emplace_back(stack_.back());
323
324     if (_sg_mc_termination)
325       this->check_non_termination(next_state.get());
326
327 #if SIMGRID_HAVE_STATEFUL_MC
328     /* Check whether we already explored next_state in the past (but only if interested in state-equality reduction)
329      */
330     if (_sg_mc_max_visited_states > 0)
331       visited_state_ = visited_states_.addVisitedState(next_state->get_num(), next_state.get(), get_remote_app());
332 #endif
333
334     stack_.emplace_back(std::move(next_state));
335
336     /* If this is a new state (or if we don't care about state-equality reduction) */
337     if (visited_state_ == nullptr) {
338       /* Get an enabled process and insert it in the interleave set of the next state */
339       if (reduction_mode_ == ReductionMode::dpor)
340         stack_.back()->consider_best(); // Take only one transition if DPOR: others may be considered later if required
341       else {
342         stack_.back()->consider_all();
343       }
344
345       dot_output("\"%ld\" -> \"%ld\" [%s];\n", state->get_num(), stack_.back()->get_num(),
346                  state->get_transition_out()->dot_string().c_str());
347 #if SIMGRID_HAVE_STATEFUL_MC
348     } else {
349       dot_output("\"%ld\" -> \"%ld\" [%s];\n", state->get_num(),
350                  visited_state_->original_num_ == -1 ? visited_state_->num_ : visited_state_->original_num_,
351                  state->get_transition_out()->dot_string().c_str());
352 #endif
353     }
354   }
355   log_state();
356 }
357
358 std::shared_ptr<State> DFSExplorer::best_opened_state()
359 {
360   int best_prio = 0; // cache the value for the best priority found so far (initialized to silence gcc)
361   auto best     = end(opened_states_);   // iterator to the state to explore having the best priority
362   auto valid    = begin(opened_states_); // iterator marking the limit between states still to explore, and already
363                                          // explored ones
364
365   // Keep only still non-explored states (aid != -1), and record the one with the best (greater) priority.
366   for (auto current = begin(opened_states_); current != end(opened_states_); ++current) {
367     auto [aid, prio] = (*current)->next_transition_guided();
368     if (aid == -1)
369       continue;
370     if (valid != current)
371       *valid = std::move(*current);
372     if (best == end(opened_states_) || prio > best_prio) {
373       best_prio = prio;
374       best      = valid;
375     }
376     ++valid;
377   }
378
379   std::shared_ptr<State> best_state;
380   if (best < valid) {
381     // There are non-explored states, and one of them has the best priority.  Remove it from opened_states_ before
382     // returning.
383     best_state = std::move(*best);
384     --valid;
385     if (best != valid)
386       *best = std::move(*valid);
387   }
388   opened_states_.erase(valid, end(opened_states_));
389
390   return best_state;
391 }
392
393 std::shared_ptr<State> DFSExplorer::next_odpor_state()
394 {
395   for (auto iter = stack_.rbegin(); iter != stack_.rend(); ++iter) {
396     const auto& state = *iter;
397     state->do_odpor_unwind();
398     XBT_DEBUG("\tPerformed ODPOR 'clean-up'. Sleep set has:");
399     for (auto& [aid, transition] : state->get_sleep_set())
400       XBT_DEBUG("\t  <%ld,%s>", aid, transition->to_string().c_str());
401     if (!state->has_empty_tree()) {
402       return state;
403     }
404   }
405   return nullptr;
406 }
407
408 void DFSExplorer::backtrack()
409 {
410   if (const auto last_event = execution_seq_.get_latest_event_handle();
411       reduction_mode_ == ReductionMode::odpor and last_event.has_value()) {
412     /**
413      * ODPOR Race Detection Procedure:
414      *
415      * For each reversible race in the current execution, we
416      * note if there are any continuations `C` equivalent to that which
417      * would reverse the race that have already either a) been searched by ODPOR or
418      * b) been *noted* to be searched by the wakeup tree at the
419      * appropriate reversal point, either as `C` directly or
420      * an as equivalent to `C` ("eventually looks like C", viz. the `~_E`
421      * relation)
422      */
423     for (auto e_prime = static_cast<odpor::Execution::EventHandle>(0); e_prime <= last_event.value(); ++e_prime) {
424       for (const auto e : execution_seq_.get_reversible_races_of(e_prime)) {
425         XBT_DEBUG("ODPOR: Reversible race detected between events `%u` and `%u`", e, e_prime);
426         State& prev_state = *stack_[e];
427         if (const auto v = execution_seq_.get_odpor_extension_from(e, e_prime, prev_state); v.has_value()) {
428           const auto result = prev_state.insert_into_wakeup_tree(v.value(), execution_seq_.get_prefix_before(e));
429           switch (result) {
430             case odpor::WakeupTree::InsertionResult::root: {
431               XBT_DEBUG("ODPOR: Reversible race with `%u` unaccounted for in the wakeup tree for "
432                         "the execution prior to event `%u`:",
433                         e_prime, e);
434               break;
435             }
436             case odpor::WakeupTree::InsertionResult::interior_node: {
437               XBT_DEBUG("ODPOR: Reversible race with `%u` partially accounted for in the wakeup tree for "
438                         "the execution prior to event `%u`:",
439                         e_prime, e);
440               break;
441             }
442             case odpor::WakeupTree::InsertionResult::leaf: {
443               XBT_DEBUG("ODPOR: Reversible race with `%u` accounted for in the wakeup tree for "
444                         "the execution prior to event `%u`:",
445                         e_prime, e);
446               break;
447             }
448           }
449           for (const auto& seq : simgrid::mc::odpor::get_textual_trace(v.value())) {
450             XBT_DEBUG(" %s", seq.c_str());
451           }
452         } else {
453           XBT_DEBUG("ODPOR: Ignoring race: `sleep(E')` intersects `WI_[E'](v := notdep(%u, E))`", e);
454           XBT_DEBUG("Sleep set contains:");
455           for (auto& [aid, transition] : prev_state.get_sleep_set())
456             XBT_DEBUG("  <%ld,%s>", aid, transition->to_string().c_str());
457         }
458       }
459     }
460   }
461
462   XBT_VERB("Backtracking from %s", get_record_trace().to_string().c_str());
463   XBT_DEBUG("%lu alternatives are yet to be explored:", opened_states_.size());
464
465   on_backtracking_signal(get_remote_app());
466   get_remote_app().check_deadlock();
467
468   // Take the point with smallest distance
469   auto backtracking_point = reduction_mode_ == ReductionMode::odpor ? next_odpor_state() : best_opened_state();
470
471   // if no backtracking point, then set the stack_ to empty so we can end the exploration
472   if (not backtracking_point) {
473     XBT_DEBUG("No more opened point of exploration, the search will end");
474     stack_.clear();
475     return;
476   }
477
478   // We found a backtracking point, let's go to it
479   backtrack_count_++;
480   XBT_DEBUG("Backtracking to state#%ld", backtracking_point->get_num());
481
482 #if SIMGRID_HAVE_STATEFUL_MC
483   /* If asked to rollback on a state that has a snapshot, restore it */
484   if (const auto* system_state = backtracking_point->get_system_state()) {
485     system_state->restore(*get_remote_app().get_remote_process_memory());
486     on_restore_system_state_signal(backtracking_point.get(), get_remote_app());
487     this->restore_stack(backtracking_point);
488     return;
489   }
490 #endif
491
492   // Search how to restore the backtracking point
493   State* init_state = nullptr;
494   std::deque<Transition*> replay_recipe;
495   for (auto* s = backtracking_point.get(); s != nullptr; s = s->get_parent_state().get()) {
496 #if SIMGRID_HAVE_STATEFUL_MC
497     if (s->get_system_state() != nullptr) { // Found a state that I can restore
498       init_state = s;
499       break;
500     }
501 #endif
502     if (s->get_transition_in() != nullptr) // The root has no transition_in
503       replay_recipe.push_front(s->get_transition_in().get());
504   }
505
506   // Restore the init_state, if any
507   if (init_state != nullptr) {
508 #if SIMGRID_HAVE_STATEFUL_MC
509     const auto* system_state = init_state->get_system_state();
510     system_state->restore(*get_remote_app().get_remote_process_memory());
511     on_restore_system_state_signal(init_state, get_remote_app());
512 #endif
513   } else { // Restore the initial state if no intermediate state was found
514     get_remote_app().restore_initial_state();
515     on_restore_initial_state_signal(get_remote_app());
516   }
517
518   /* if no snapshot, we need to restore the initial state and replay the transitions */
519   /* Traverse the stack from the state at position start and re-execute the transitions */
520   for (auto& transition : replay_recipe) {
521     transition->replay(get_remote_app());
522     on_transition_replay_signal(transition, get_remote_app());
523     visited_states_count_++;
524   }
525   this->restore_stack(backtracking_point);
526 }
527
528 DFSExplorer::DFSExplorer(const std::vector<char*>& args, ReductionMode mode, bool need_memory_info)
529     : Exploration(args, need_memory_info || _sg_mc_termination
530 #if SIMGRID_HAVE_STATEFUL_MC
531                             || _sg_mc_checkpoint > 0
532 #endif
533                   )
534     , reduction_mode_(mode)
535 {
536   if (_sg_mc_termination) {
537     if (mode != ReductionMode::none) {
538       XBT_INFO("Check non progressive cycles (turning DPOR off)");
539       reduction_mode_ = ReductionMode::none;
540     } else {
541       XBT_INFO("Check non progressive cycles");
542     }
543   } else
544     XBT_INFO("Start a DFS exploration. Reduction is: %s.", to_c_str(reduction_mode_));
545
546   auto initial_state = std::make_shared<State>(get_remote_app());
547
548   XBT_DEBUG("**************************************************");
549
550   stack_.emplace_back(std::move(initial_state));
551
552   /* Get an enabled actor and insert it in the interleave set of the initial state */
553   XBT_DEBUG("Initial state. %lu actors to consider", stack_.back()->get_actor_count());
554   if (reduction_mode_ == ReductionMode::dpor)
555     stack_.back()->consider_best();
556   else {
557     stack_.back()->consider_all();
558   }
559   if (stack_.back()->count_todo_multiples() > 1)
560     opened_states_.emplace_back(stack_.back());
561
562   if (mode == ReductionMode::odpor && !_sg_mc_sleep_set) {
563     // ODPOR requires the use of sleep sets; SDPOR
564     // "likes" using sleep sets but it is not strictly
565     // required
566     XBT_INFO("Forcing the use of sleep sets for use with ODPOR");
567     _sg_mc_sleep_set = true;
568   }
569 }
570
571 Exploration* create_dfs_exploration(const std::vector<char*>& args, ReductionMode mode)
572 {
573   return new DFSExplorer(args, mode);
574 }
575
576 } // namespace simgrid::mc