You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
201 lines
11 KiB
201 lines
11 KiB
#include <list>
|
|
#include <queue>
|
|
|
|
#include "src/models/sparse/StandardRewardModel.h"
|
|
|
|
#include "src/storage/MaximalEndComponentDecomposition.h"
|
|
#include "src/storage/StronglyConnectedComponentDecomposition.h"
|
|
|
|
namespace storm {
|
|
namespace storage {
|
|
|
|
template<typename ValueType>
|
|
MaximalEndComponentDecomposition<ValueType>::MaximalEndComponentDecomposition() : Decomposition() {
|
|
// Intentionally left empty.
|
|
}
|
|
|
|
template<typename ValueType>
|
|
template<typename RewardModelType>
|
|
MaximalEndComponentDecomposition<ValueType>::MaximalEndComponentDecomposition(storm::models::sparse::NondeterministicModel<ValueType, RewardModelType> const& model) {
|
|
performMaximalEndComponentDecomposition(model.getTransitionMatrix(), model.getBackwardTransitions(), storm::storage::BitVector(model.getNumberOfStates(), true));
|
|
}
|
|
|
|
template<typename ValueType>
|
|
MaximalEndComponentDecomposition<ValueType>::MaximalEndComponentDecomposition(storm::storage::SparseMatrix<ValueType> const& transitionMatrix, storm::storage::SparseMatrix<ValueType> const& backwardTransitions) {
|
|
performMaximalEndComponentDecomposition(transitionMatrix, backwardTransitions, storm::storage::BitVector(transitionMatrix.getRowGroupCount(), true));
|
|
}
|
|
|
|
template<typename ValueType>
|
|
MaximalEndComponentDecomposition<ValueType>::MaximalEndComponentDecomposition(storm::storage::SparseMatrix<ValueType> const& transitionMatrix, storm::storage::SparseMatrix<ValueType> const& backwardTransitions, storm::storage::BitVector const& subsystem) {
|
|
performMaximalEndComponentDecomposition(transitionMatrix, backwardTransitions, subsystem);
|
|
}
|
|
|
|
template<typename ValueType>
|
|
MaximalEndComponentDecomposition<ValueType>::MaximalEndComponentDecomposition(storm::models::sparse::NondeterministicModel<ValueType> const& model, storm::storage::BitVector const& subsystem) {
|
|
performMaximalEndComponentDecomposition(model.getTransitionMatrix(), model.getBackwardTransitions(), subsystem);
|
|
}
|
|
|
|
template<typename ValueType>
|
|
MaximalEndComponentDecomposition<ValueType>::MaximalEndComponentDecomposition(MaximalEndComponentDecomposition const& other) : Decomposition(other) {
|
|
// Intentionally left empty.
|
|
}
|
|
|
|
template<typename ValueType>
|
|
MaximalEndComponentDecomposition<ValueType>& MaximalEndComponentDecomposition<ValueType>::operator=(MaximalEndComponentDecomposition const& other) {
|
|
Decomposition::operator=(other);
|
|
return *this;
|
|
}
|
|
|
|
template<typename ValueType>
|
|
MaximalEndComponentDecomposition<ValueType>::MaximalEndComponentDecomposition(MaximalEndComponentDecomposition&& other) : Decomposition(std::move(other)) {
|
|
// Intentionally left empty.
|
|
}
|
|
|
|
template<typename ValueType>
|
|
MaximalEndComponentDecomposition<ValueType>& MaximalEndComponentDecomposition<ValueType>::operator=(MaximalEndComponentDecomposition&& other) {
|
|
Decomposition::operator=(std::move(other));
|
|
return *this;
|
|
}
|
|
|
|
template <typename ValueType>
|
|
void MaximalEndComponentDecomposition<ValueType>::performMaximalEndComponentDecomposition(storm::storage::SparseMatrix<ValueType> const& transitionMatrix, storm::storage::SparseMatrix<ValueType> backwardTransitions, storm::storage::BitVector const& subsystem) {
|
|
// Get some data for convenient access.
|
|
uint_fast64_t numberOfStates = transitionMatrix.getRowGroupCount();
|
|
std::vector<uint_fast64_t> const& nondeterministicChoiceIndices = transitionMatrix.getRowGroupIndices();
|
|
|
|
// Initialize the maximal end component list to be the full state space.
|
|
std::list<StateBlock> endComponentStateSets;
|
|
if(!subsystem.empty()) {
|
|
endComponentStateSets.emplace_back(subsystem.begin(), subsystem.end());
|
|
}
|
|
storm::storage::BitVector statesToCheck(numberOfStates);
|
|
|
|
// The iterator used here should really be a const_iterator.
|
|
// However, gcc 4.8 (and assorted libraries) does not provide an erase(const_iterator) method for std::list
|
|
// but only an erase(iterator). This is in compliance with the c++11 draft N3337, which specifies the change
|
|
// from iterator to const_iterator only for "set, multiset, map [and] multimap".
|
|
for (std::list<StateBlock>::const_iterator mecIterator = endComponentStateSets.begin(); mecIterator != endComponentStateSets.end();) {
|
|
StateBlock const& mec = *mecIterator;
|
|
|
|
// Keep track of whether the MEC changed during this iteration.
|
|
bool mecChanged = false;
|
|
|
|
// Get an SCC decomposition of the current MEC candidate.
|
|
StronglyConnectedComponentDecomposition<ValueType> sccs(transitionMatrix, mec, true);
|
|
|
|
// We need to do another iteration in case we have either more than once SCC or the SCC is smaller than
|
|
// the MEC canditate itself.
|
|
mecChanged |= sccs.size() > 1 || (sccs.size() > 0 && sccs[0].size() < mec.size());
|
|
|
|
// Check for each of the SCCs whether there is at least one action for each state that does not leave the SCC.
|
|
for (auto& scc : sccs) {
|
|
statesToCheck.set(scc.begin(), scc.end());
|
|
|
|
while (!statesToCheck.empty()) {
|
|
storm::storage::BitVector statesToRemove(numberOfStates);
|
|
|
|
for (auto state : statesToCheck) {
|
|
bool keepStateInMEC = false;
|
|
|
|
for (uint_fast64_t choice = nondeterministicChoiceIndices[state]; choice < nondeterministicChoiceIndices[state + 1]; ++choice) {
|
|
bool choiceContainedInMEC = true;
|
|
for (auto const& entry : transitionMatrix.getRow(choice)) {
|
|
if (entry.getValue() == storm::utility::zero<ValueType>()) {
|
|
continue;
|
|
}
|
|
|
|
if (!scc.containsState(entry.getColumn())) {
|
|
choiceContainedInMEC = false;
|
|
break;
|
|
}
|
|
}
|
|
|
|
// If there is at least one choice whose successor states are fully contained in the MEC, we can leave the state in the MEC.
|
|
if (choiceContainedInMEC) {
|
|
keepStateInMEC = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!keepStateInMEC) {
|
|
statesToRemove.set(state, true);
|
|
}
|
|
}
|
|
|
|
// Now erase the states that have no option to stay inside the MEC with all successors.
|
|
mecChanged |= !statesToRemove.empty();
|
|
for (uint_fast64_t state : statesToRemove) {
|
|
scc.erase(state);
|
|
}
|
|
|
|
// Now check which states should be reconsidered, because successors of them were removed.
|
|
statesToCheck.clear();
|
|
for (auto state : statesToRemove) {
|
|
for (auto const& entry : backwardTransitions.getRow(state)) {
|
|
if (scc.containsState(entry.getColumn())) {
|
|
statesToCheck.set(entry.getColumn());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// If the MEC changed, we delete it from the list of MECs and append the possible new MEC candidates to
|
|
// the list instead.
|
|
if (mecChanged) {
|
|
for (StronglyConnectedComponent& scc : sccs) {
|
|
if (!scc.empty()) {
|
|
endComponentStateSets.push_back(std::move(scc));
|
|
}
|
|
}
|
|
|
|
std::list<StateBlock>::const_iterator eraseIterator(mecIterator);
|
|
++mecIterator;
|
|
endComponentStateSets.erase(eraseIterator);
|
|
} else {
|
|
// Otherwise, we proceed with the next MEC candidate.
|
|
++mecIterator;
|
|
}
|
|
|
|
} // End of loop over all MEC candidates.
|
|
|
|
// Now that we computed the underlying state sets of the MECs, we need to properly identify the choices
|
|
// contained in the MEC and store them as actual MECs.
|
|
this->blocks.reserve(endComponentStateSets.size());
|
|
for (auto const& mecStateSet : endComponentStateSets) {
|
|
MaximalEndComponent newMec;
|
|
|
|
for (auto state : mecStateSet) {
|
|
MaximalEndComponent::set_type containedChoices;
|
|
for (uint_fast64_t choice = nondeterministicChoiceIndices[state]; choice < nondeterministicChoiceIndices[state + 1]; ++choice) {
|
|
bool choiceContained = true;
|
|
for (auto const& entry : transitionMatrix.getRow(choice)) {
|
|
if (!mecStateSet.containsState(entry.getColumn())) {
|
|
choiceContained = false;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (choiceContained) {
|
|
containedChoices.insert(choice);
|
|
}
|
|
}
|
|
|
|
STORM_LOG_ASSERT(!containedChoices.empty(), "The contained choices of any state in an MEC must be non-empty.");
|
|
newMec.addState(state, std::move(containedChoices));
|
|
}
|
|
|
|
this->blocks.emplace_back(std::move(newMec));
|
|
}
|
|
}
|
|
|
|
// Explicitly instantiate the MEC decomposition.
|
|
template class MaximalEndComponentDecomposition<double>;
|
|
template MaximalEndComponentDecomposition<double>::MaximalEndComponentDecomposition(storm::models::sparse::NondeterministicModel<double> const& model);
|
|
|
|
#ifdef STORM_HAVE_CARL
|
|
template class MaximalEndComponentDecomposition<storm::RationalNumber>;
|
|
template MaximalEndComponentDecomposition<storm::RationalNumber>::MaximalEndComponentDecomposition(storm::models::sparse::NondeterministicModel<storm::RationalNumber> const& model);
|
|
#endif
|
|
}
|
|
}
|