Browse Source

Reverted the last commit. The flag is there for performance reasons and there is no reason why it shouldn't work that way.

Former-commit-id: e551eb461f
tempestpy_adaptions
dehnert 10 years ago
parent
commit
7e14dc031b
  1. 2
      src/storage/DeterministicModelBisimulationDecomposition.cpp

2
src/storage/DeterministicModelBisimulationDecomposition.cpp

@ -875,7 +875,7 @@ namespace storm {
// Convert the state-value-pairs to states only. // Convert the state-value-pairs to states only.
std::function<storm::storage::sparse::state_type (std::pair<storm::storage::sparse::state_type, ValueType> const&)> projection = [] (std::pair<storm::storage::sparse::state_type, ValueType> const& a) -> storm::storage::sparse::state_type { return a.first; }; std::function<storm::storage::sparse::state_type (std::pair<storm::storage::sparse::state_type, ValueType> const&)> projection = [] (std::pair<storm::storage::sparse::state_type, ValueType> const& a) -> storm::storage::sparse::state_type { return a.first; };
this->blocks[block.getId()] = block_type(boost::make_transform_iterator(partition.getBegin(block), projection), boost::make_transform_iterator(partition.getEnd(block), projection), false);
this->blocks[block.getId()] = block_type(boost::make_transform_iterator(partition.getBegin(block), projection), boost::make_transform_iterator(partition.getEnd(block), projection), true);
} }
// If we are required to build the quotient model, do so now. // If we are required to build the quotient model, do so now.

Loading…
Cancel
Save