Browse Source

Fixed a recently introduced issue with interval bounded ctmcs.

tempestpy_adaptions
TimQu 6 years ago
parent
commit
fceaeed557
  1. 1
      src/storm/modelchecker/csl/helper/SparseCtmcCslHelper.cpp

1
src/storm/modelchecker/csl/helper/SparseCtmcCslHelper.cpp

@ -146,7 +146,6 @@ namespace storm {
// Start by computing the transient probabilities of reaching a psi state in time t' - t.
std::vector<ValueType> values(statesWithProbabilityGreater0NonPsi.getNumberOfSetBits(), storm::utility::zero<ValueType>());
std::vector<ValueType> subresult = computeTransientProbabilities(env, uniformizedMatrix, &b, upperBound - lowerBound, uniformizationRate, values);
newSubresult = std::vector<ValueType>(relevantStates.getNumberOfSetBits());
storm::utility::vector::setVectorValues(newSubresult, statesWithProbabilityGreater0NonPsi % relevantStates, subresult);
}

Loading…
Cancel
Save