X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1c336d9ddfef2d3da04a52c1918ae6821fed748e..753ea77ea991c7e407d6731839d5f7dbcc24f7e2:/src/mc/explo/UdporChecker.cpp diff --git a/src/mc/explo/UdporChecker.cpp b/src/mc/explo/UdporChecker.cpp index 4fcca93ae4..fdd3680134 100644 --- a/src/mc/explo/UdporChecker.cpp +++ b/src/mc/explo/UdporChecker.cpp @@ -4,10 +4,11 @@ * under the terms of the license (GNU LGPL) which comes with this package. */ #include "src/mc/explo/UdporChecker.hpp" +#include "src/mc/api/State.hpp" #include #include -XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_udpor, mc, "Logging specific to MC safety verification "); +XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_udpor, mc, "Logging specific to verification using UDPOR"); namespace simgrid::mc::udpor { @@ -24,23 +25,29 @@ void UdporChecker::run() // NOTE: `A`, `D`, and `C` are derived from the // original UDPOR paper [1], while `prev_exC` arises // from the incremental computation of ex(C) from [3] - EventSet A, D; - Configuration C; - EventSet prev_exC; + Configuration C_root; - auto initial_state = get_current_state(); - const auto initial_state_id = state_manager_.record_state(std::move(initial_state)); - const auto root_event = std::make_unique(-1, "", EventSet(), initial_state_id); - explore(std::move(C), std::move(A), std::move(D), {}, root_event.get(), std::move(prev_exC)); + // TODO: Move computing the root configuration into a method on the Unfolding + auto initial_state = get_current_state(); + auto root_event = std::make_unique(std::make_shared(), EventSet()); + auto* root_event_handle = root_event.get(); + unfolding.insert(std::move(root_event)); + C_root.add_event(root_event_handle); + + explore(std::move(C_root), EventSet(), EventSet(), std::move(initial_state), EventSet()); XBT_INFO("UDPOR exploration terminated -- model checking completed"); } -void UdporChecker::explore(Configuration C, EventSet D, EventSet A, std::list max_evt_history, - UnfoldingEvent* e_cur, EventSet prev_exC) +void UdporChecker::explore(Configuration C, EventSet D, EventSet A, std::unique_ptr stateC, EventSet prev_exC) { // Perform the incremental computation of exC - auto [exC, enC] = compute_extension(C, max_evt_history, e_cur, prev_exC); + // + // TODO: This method will have side effects on + // the unfolding, but the naming of the method + // suggests it is doesn't have side effects. We should + // reconcile this in the future + auto [exC, enC] = compute_extension(C, prev_exC); // If enC is a subset of D, intuitively // there aren't any enabled transitions @@ -73,25 +80,25 @@ void UdporChecker::explore(Configuration C, EventSet D, EventSet A, std::listset_state_id(next_state_id); + + // Move the application into stateCe and actually make note of that state + move_to_stateCe(*stateC, *e); + auto stateCe = record_current_state(); // Ce := C + {e} Configuration Ce = C; Ce.add_event(e); - max_evt_history.push_back(Ce.get_maximal_events()); A.remove(e); exC.remove(e); // Explore(C + {e}, D, A \ {e}) - explore(Ce, D, std::move(A), max_evt_history, e, std::move(exC)); + explore(Ce, D, std::move(A), std::move(stateCe), std::move(exC)); // D <-- D + {e} D.insert(e); @@ -101,10 +108,15 @@ void UdporChecker::explore(Configuration C, EventSet D, EventSet A, std::list UdporChecker::compute_extension(const Configuration& C, - const std::list& max_evt_history, - UnfoldingEvent* e_cur, const EventSet& prev_exC) const +std::tuple UdporChecker::compute_extension(const Configuration& C, const EventSet& prev_exC) const { // See eqs. 5.7 of section 5.2 of [3] - // ex(C + {e_cur}) = ex(C) / {e_cur} + U{ : H } - EventSet exC = prev_exC; + // C = C' + {e_cur}, i.e. C' = C - {e_cur} + // + // Then + // + // ex(C) = ex(C' + {e_cur}) = ex(C') / {e_cur} + U{ : H } + UnfoldingEvent* e_cur = C.get_latest_event(); + EventSet exC = prev_exC; exC.remove(e_cur); + // ... fancy computations + EventSet enC; return std::tuple(exC, enC); } -State& UdporChecker::get_state_referenced_by(const UnfoldingEvent& event) -{ - const auto state_id = event.get_state_id(); - const auto wrapped_state = this->state_manager_.get_state(state_id); - xbt_assert(wrapped_state != std::nullopt, - "\n\n****** INVARIANT VIOLATION ******\n" - "To each UDPOR event corresponds a state, but state %lu does not exist. " - "Please report this as a bug.\n" - "*********************************\n\n", - state_id); - return wrapped_state.value().get(); -} - -StateHandle UdporChecker::observe_unfolding_event(const UnfoldingEvent& event) +void UdporChecker::move_to_stateCe(State& state, const UnfoldingEvent& e) { - auto& state = this->get_state_referenced_by(event); - const aid_t next_actor = state.next_transition(); + const aid_t next_actor = e.get_transition()->aid_; // TODO: Add the trace if possible for reporting a bug xbt_assert(next_actor >= 0, "\n\n****** INVARIANT VIOLATION ******\n" @@ -152,17 +155,22 @@ StateHandle UdporChecker::observe_unfolding_event(const UnfoldingEvent& event) "state was actually enabled. Please report this as a bug.\n" "*********************************\n\n"); state.execute_next(next_actor); - return this->record_current_state(); } -StateHandle UdporChecker::record_current_state() +void UdporChecker::restore_program_state_to(const State& stateC) +{ + // TODO: Perform state regeneration in the same manner as is done + // in the DFSChecker.cpp +} + +std::unique_ptr UdporChecker::record_current_state() { - auto next_state = this->get_current_state(); - const auto next_state_id = this->state_manager_.record_state(std::move(next_state)); + auto next_state = this->get_current_state(); // In UDPOR, we care about all enabled transitions in a given state next_state->mark_all_enabled_todo(); - return next_state_id; + + return next_state; } UnfoldingEvent* UdporChecker::select_next_unfolding_event(const EventSet& A, const EventSet& enC) @@ -198,6 +206,8 @@ RecordTrace UdporChecker::get_record_trace() std::vector UdporChecker::get_textual_trace() { + // TODO: Topologically sort the events of the latest configuration + // and iterate through that topological sorting std::vector trace; return trace; }