From: Wolfgang Bangerth Date: Thu, 11 Jul 2024 13:48:08 +0000 (-0600) Subject: Default SolverControl to not print to deallog. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ee3b6eddae27496c9e9d2e6f7d2851233b6b5e90;p=dealii.git Default SolverControl to not print to deallog. --- 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