Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/solver/impls/cvode/cvode.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,9 @@ CvodeSolver::CvodeSolver(Options* opts)

if ((*options)["use_precon"].isSet()) {
throw BoutException("solver:use_precon is deprecated for CVODE and is now "
"ignored. Use solver:cvode_precon_method=none to disable "
"preconditioning.\n");
"ignored. To reproduce behaviour of use_precon=true, "
"set cvode_precon_method=user. This enables the Hermes-3 "
"physical preconditioners.\n");
}

// Add diagnostics to output
Expand Down
Loading