From: Niklas Fehn Date: Thu, 1 Jun 2017 07:37:46 +0000 (+0200) Subject: Initialization of Chebyshev smoother X-Git-Tag: v9.0.0-rc1~1479^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f9034e89fb7b7d424c98ab404f105c56a4e7b0df;p=dealii.git Initialization of Chebyshev smoother project vector onto space of vectors with zero mean which is necessary in some cases where the matrix is singular rename variable is_initialized -> eigenvalues_are_initialized in order to improve code readability --- diff --git a/include/deal.II/lac/precondition.h b/include/deal.II/lac/precondition.h index 723078a450..b8d833aee4 100644 --- a/include/deal.II/lac/precondition.h +++ b/include/deal.II/lac/precondition.h @@ -1103,7 +1103,7 @@ private: * Stores whether the preconditioner has been set up and eigenvalues have * been computed. */ - bool is_initialized; + bool eigenvalues_are_initialized; /** * A mutex to avoid that multiple vmult() invocations by different threads @@ -1920,6 +1920,9 @@ namespace internal // a period of 11 for (unsigned int i=0; i @@ -1931,6 +1934,9 @@ namespace internal // a period of 11 for (unsigned int i=0; i inline PreconditionChebyshev::PreconditionChebyshev () : - theta (1.), - delta (1.), - is_initialized (false) + theta (1.), + delta (1.), + eigenvalues_are_initialized (false) { static_assert( std::is_same::value, @@ -2001,7 +2007,7 @@ PreconditionChebyshev::initialize internal::PreconditionChebyshev::initialize_preconditioner(matrix, data.preconditioner, data.matrix_diagonal_inverse); - is_initialized = false; + eigenvalues_are_initialized = false; } @@ -2011,7 +2017,7 @@ inline void PreconditionChebyshev::clear () { - is_initialized = false; + eigenvalues_are_initialized = false; theta = delta = 1.0; matrix_ptr = nullptr; { @@ -2034,7 +2040,7 @@ void PreconditionChebyshev::estimate_eigenvalues (const VectorType &src) const { - Assert(is_initialized == false, ExcInternalError()); + Assert(eigenvalues_are_initialized == false, ExcInternalError()); Assert(data.preconditioner.get() != nullptr, ExcNotInitialized()); update1.reinit(src); @@ -2120,7 +2126,7 @@ PreconditionChebyshev::estimate_eigenv )) update3.reinit (src, true); - const_cast *>(this)->is_initialized = true; + const_cast *>(this)->eigenvalues_are_initialized = true; } @@ -2180,7 +2186,7 @@ PreconditionChebyshev const VectorType &src) const { Threads::Mutex::ScopedLock lock(mutex); - if (is_initialized == false) + if (eigenvalues_are_initialized == false) estimate_eigenvalues(src); internal::PreconditionChebyshev::vector_updates @@ -2199,7 +2205,7 @@ PreconditionChebyshev const VectorType &src) const { Threads::Mutex::ScopedLock lock(mutex); - if (is_initialized == false) + if (eigenvalues_are_initialized == false) estimate_eigenvalues(src); internal::PreconditionChebyshev::vector_updates @@ -2218,7 +2224,7 @@ PreconditionChebyshev const VectorType &src) const { Threads::Mutex::ScopedLock lock(mutex); - if (is_initialized == false) + if (eigenvalues_are_initialized == false) estimate_eigenvalues(src); if (!dst.all_zero()) @@ -2244,7 +2250,7 @@ PreconditionChebyshev const VectorType &src) const { Threads::Mutex::ScopedLock lock(mutex); - if (is_initialized == false) + if (eigenvalues_are_initialized == false) estimate_eigenvalues(src); if (!dst.all_zero())