From: Daniel Arndt Date: Mon, 9 Jul 2018 13:39:07 +0000 (+0200) Subject: Fix schur_complement.h X-Git-Tag: v9.1.0-rc1~934^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db2aaf580a665ed896d5d54bcb59d7e14f22c089;p=dealii.git Fix schur_complement.h --- diff --git a/include/deal.II/lac/schur_complement.h b/include/deal.II/lac/schur_complement.h index 140e6123a9..97f678ce7d 100644 --- a/include/deal.II/lac/schur_complement.h +++ b/include/deal.II/lac/schur_complement.h @@ -158,9 +158,6 @@ DEAL_II_NAMESPACE_OPEN * * // Solve reduced block system * // PackagedOperation that represents the condensed form of g - * y = S_inv * rhs; - * - * // PackagedOperation that represents the condensed form of g * auto rhs = condense_schur_rhs (A_inv,C,f,g); * * // Solve for y @@ -194,8 +191,8 @@ DEAL_II_NAMESPACE_OPEN * // D and S_approx operate on same space * const auto S_approx_prec = PreconditionSelector<...>(D); * - * // Inner solver: - * // Typically limited to few iterations using IterationNumberControl + * // Inner solver: Typically limited to few iterations + * // using IterationNumberControl * auto S_inv_approx = inverse_operator(S_approx,...,S_approx_prec); * * // Construction of exact inverse of Schur complement