Browse Source

fix in weak bisim for ctmcs

Former-commit-id: 436837add1
tempestpy_adaptions
sjunges 9 years ago
parent
commit
17a3dabfc5
  1. 2
      src/storage/bisimulation/DeterministicModelBisimulationDecomposition.cpp

2
src/storage/bisimulation/DeterministicModelBisimulationDecomposition.cpp

@ -542,7 +542,7 @@ namespace storm {
// However, for weak bisimulation, we need to make sure the representative state is a non-silent one (if
// there is any such state).
if (this->options.getType() == BisimulationType::Weak) {
if (this->options.getType() == BisimulationType::Weak && this->model.getType() == storm::models::ModelType::Dtmc) {
for (auto const& state : block) {
if (!isSilent(state)) {
representativeState = state;

Loading…
Cancel
Save