From cab33179e7b0e27d8f7e569bca85744f424580d7 Mon Sep 17 00:00:00 2001 From: Matthias Volk Date: Sun, 8 Apr 2018 22:09:16 +0200 Subject: [PATCH] Typo --- src/storm/modelchecker/prctl/helper/SparseDtmcPrctlHelper.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/storm/modelchecker/prctl/helper/SparseDtmcPrctlHelper.cpp b/src/storm/modelchecker/prctl/helper/SparseDtmcPrctlHelper.cpp index dd8bbce8f..ddd430087 100644 --- a/src/storm/modelchecker/prctl/helper/SparseDtmcPrctlHelper.cpp +++ b/src/storm/modelchecker/prctl/helper/SparseDtmcPrctlHelper.cpp @@ -250,7 +250,7 @@ namespace storm { std::vector result(transitionMatrix.getRowCount(), storm::utility::zero()); // We need to identify the maybe states (states which have a probability for satisfying the until formula - // that is strictly between 0 and 1) and the states that satisfy the formula with probablity 1. + // that is strictly between 0 and 1) and the states that satisfy the formula with probability 1. storm::storage::BitVector maybeStates, statesWithProbability1; if (hint.isExplicitModelCheckerHint() && hint.template asExplicitModelCheckerHint().getComputeOnlyMaybeStates()) { @@ -290,7 +290,7 @@ namespace storm { storm::utility::vector::setVectorValues(result, maybeStates, storm::utility::convertNumber(0.5)); } else { if (!maybeStates.empty()) { - // In this case we have have to compute the probabilities. + // In this case we have to compute the probabilities. // Check whether we need to convert the input to equation system format. storm::solver::GeneralLinearEquationSolverFactory linearEquationSolverFactory;