Browse Source

removed a WARN message at wrong position

tempestpy_adaptions
TimQu 7 years ago
parent
commit
3458e42d05
  1. 2
      src/storm/solver/SymbolicNativeLinearEquationSolver.cpp

2
src/storm/solver/SymbolicNativeLinearEquationSolver.cpp

@ -50,8 +50,6 @@ namespace storm {
if (method != NativeLinearEquationSolverMethod::Power && method != NativeLinearEquationSolverMethod::RationalSearch && method != NativeLinearEquationSolverMethod::Jacobi) { if (method != NativeLinearEquationSolverMethod::Power && method != NativeLinearEquationSolverMethod::RationalSearch && method != NativeLinearEquationSolverMethod::Jacobi) {
method = NativeLinearEquationSolverMethod::Jacobi; method = NativeLinearEquationSolverMethod::Jacobi;
STORM_LOG_INFO("The selected solution method is not supported in the dd engine. Falling back to '" + toString(method) + "'."); STORM_LOG_INFO("The selected solution method is not supported in the dd engine. Falling back to '" + toString(method) + "'.");
} else {
STORM_LOG_WARN("The selected solution method does not guarantee sound results.");
} }
STORM_LOG_WARN_COND_DEBUG(!env.solver().isForceSoundness(), "Sound computations are not supported in the Dd engine."); STORM_LOG_WARN_COND_DEBUG(!env.solver().isForceSoundness(), "Sound computations are not supported in the Dd engine.");
} }

Loading…
Cancel
Save