From ee3b6eddae27496c9e9d2e6f7d2851233b6b5e90 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 11 Jul 2024 07:48:08 -0600 Subject: [PATCH] Default SolverControl to not print to deallog. --- include/deal.II/lac/solver_control.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/deal.II/lac/solver_control.h b/include/deal.II/lac/solver_control.h index d93bb5d44c..61a88a9c4b 100644 --- a/include/deal.II/lac/solver_control.h +++ b/include/deal.II/lac/solver_control.h @@ -145,12 +145,12 @@ public: * checked and the number of the iteration step) shall be printed to @p * deallog stream. Default is: do not print. Similarly, @p log_result * specifies the whether the final result is logged to @p deallog. Default - * is yes. + * is: do not print. */ explicit SolverControl(const unsigned int n = 100, const double tol = 1.e-10, const bool log_history = false, - const bool log_result = true); + const bool log_result = false); /** * Virtual destructor is needed as there are virtual functions in this @@ -432,7 +432,7 @@ public: const double tolerance = 1.e-10, const double reduce = 1.e-2, const bool log_history = false, - const bool log_result = true); + const bool log_result = false); /** * Initialize with a SolverControl object. The result will emulate @@ -518,7 +518,7 @@ public: explicit IterationNumberControl(const unsigned int maxiter = 100, const double tolerance = 1e-12, const bool log_history = false, - const bool log_result = true); + const bool log_result = false); /** * Initialize with a SolverControl object. The result will emulate -- 2.39.5