X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/858298e81941473ad0ea981a85fa57a65da3491f..6260d187764dc644d699e1a53454f7efdcc682df:/src/mc/explo/udpor/ExtensionSetCalculator.cpp diff --git a/src/mc/explo/udpor/ExtensionSetCalculator.cpp b/src/mc/explo/udpor/ExtensionSetCalculator.cpp index f1e76f4d95..491ec2d9e5 100644 --- a/src/mc/explo/udpor/ExtensionSetCalculator.cpp +++ b/src/mc/explo/udpor/ExtensionSetCalculator.cpp @@ -182,7 +182,6 @@ EventSet ExtensionSetCalculator::partially_extend_CommWait(const Configuration& // do: `CommWait` will never be enabled in the empty configuration (at // least two actions must be executed before) if (pre_event_a_C.has_value(); const auto unwrapped_pre_event = pre_event_a_C.value()) { - // A necessary condition is that the issuer be present in // config({preEvt(a, C)}); otherwise, the `CommWait` could not // be enabled since the communication on which it waits would not @@ -196,7 +195,6 @@ EventSet ExtensionSetCalculator::partially_extend_CommWait(const Configuration& if (const CommRecvTransition* e_issuer_receive = dynamic_cast(e_issuer->get_transition()); e_issuer_receive != nullptr) { - const unsigned issuer_mailbox = e_issuer_receive->get_mailbox(); // Check from the config -> how many sends have there been @@ -226,7 +224,6 @@ EventSet ExtensionSetCalculator::partially_extend_CommWait(const Configuration& } else if (const CommSendTransition* e_issuer_send = dynamic_cast(e_issuer->get_transition()); e_issuer_send != nullptr) { - const unsigned issuer_mailbox = e_issuer_send->get_mailbox(); // Check from e_issuer -> what place is the issuer in? @@ -268,7 +265,6 @@ EventSet ExtensionSetCalculator::partially_extend_CommWait(const Configuration& for (const auto e : C) { if (const CommSendTransition* e_issuer_send = dynamic_cast(e_issuer->get_transition()); e_issuer_send != nullptr) { - // If the provider of the communication for `CommWait` is a // `CommSend(m)`, then we only care about `e` if `λ(e) == `CommRecv(m)`. // All other actions would be independent with the wait action (including @@ -321,7 +317,6 @@ EventSet ExtensionSetCalculator::partially_extend_CommWait(const Configuration& } else if (const CommRecvTransition* e_issuer_recv = dynamic_cast(e_issuer->get_transition()); e_issuer_recv != nullptr) { - // If the provider of the communication for `CommWait` is a // `CommRecv(m)`, then we only care about `e` if `λ(e) == `CommSend(m)`. // All other actions would be independent with the wait action (including @@ -381,4 +376,4 @@ EventSet ExtensionSetCalculator::partially_extend_CommTest(const Configuration& return EventSet(); } -} // namespace simgrid::mc::udpor \ No newline at end of file +} // namespace simgrid::mc::udpor