Browse Source

Fixed typo

tempestpy_adaptions
Matthias Volk 8 years ago
parent
commit
ad2371fdae
  1. 2
      src/storm/solver/SymbolicLinearEquationSolver.cpp
  2. 2
      src/storm/solver/SymbolicMinMaxLinearEquationSolver.cpp

2
src/storm/solver/SymbolicLinearEquationSolver.cpp

@ -63,7 +63,7 @@ namespace storm {
if (converged) {
STORM_LOG_TRACE("Iterative solver converged in " << iterationCount << " iterations.");
} else {
STORM_LOG_WARN("Iterative solver did not converge in " << iterationCount << " iterstions.");
STORM_LOG_WARN("Iterative solver did not converge in " << iterationCount << " iterations.");
}
return xCopy;

2
src/storm/solver/SymbolicMinMaxLinearEquationSolver.cpp

@ -60,7 +60,7 @@ namespace storm {
if (converged) {
STORM_LOG_TRACE("Iterative solver converged in " << iterations << " iterations.");
} else {
STORM_LOG_WARN("Iterative solver did not converge in " << iterations << " iterstions.");
STORM_LOG_WARN("Iterative solver did not converge in " << iterations << " iterations.");
}
return xCopy;

Loading…
Cancel
Save