From 651a85864ec43b076a56eb3e17b024eaf7bb07f8 Mon Sep 17 00:00:00 2001 From: Jean-Paul Pelteret Date: Mon, 31 Oct 2016 07:44:04 +0100 Subject: [PATCH] Specify options for names in SolverSelector, PreconditionSelector Fixes #3324 --- include/deal.II/lac/precondition_selector.h | 9 ++++++++- include/deal.II/lac/solver_selector.h | 11 ++++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/include/deal.II/lac/precondition_selector.h b/include/deal.II/lac/precondition_selector.h index 164018c81d..18da8d5cc4 100644 --- a/include/deal.II/lac/precondition_selector.h +++ b/include/deal.II/lac/precondition_selector.h @@ -143,7 +143,14 @@ public: virtual void Tvmult (VectorType &dst, const VectorType &src) const; /** - * Get the names of all implemented preconditionings. + * Get the names of all implemented preconditionings. The list of possible + * options includes: + * */ static std::string get_precondition_names(); diff --git a/include/deal.II/lac/solver_selector.h b/include/deal.II/lac/solver_selector.h index 99591e254b..c3d0691c92 100644 --- a/include/deal.II/lac/solver_selector.h +++ b/include/deal.II/lac/solver_selector.h @@ -172,7 +172,16 @@ public: ::AdditionalData &data); /** - * Get the names of all implemented solvers. + * Get the names of all implemented solvers. The list of possible + * options includes: + * */ static std::string get_solver_names (); -- 2.39.5