From: David Wells Date: Wed, 12 Oct 2016 01:22:00 +0000 (-0400) Subject: Remove MGMatrix doc references. X-Git-Tag: v8.5.0-rc1~580^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d14bd63909a5563992e367a571713e7c2a578be;p=dealii.git Remove MGMatrix doc references. This class was removed in commit 0e6f496cdf (January 2015). --- diff --git a/doc/doxygen/headers/mg.h b/doc/doxygen/headers/mg.h index c29314a296..f256924642 100644 --- a/doc/doxygen/headers/mg.h +++ b/doc/doxygen/headers/mg.h @@ -25,7 +25,7 @@ * *
    *
  1. MGMatrixBase contains the level matrices with a fairly general - * implementation in MGMatrix + * implementation in mg::Matrix *
  2. MGCoarseGridBase is the solver on the coarsest level. *
  3. MGSmootherBase performs smoothing on each level. *
  4. MGTransferBase organizes the transfer between levels. diff --git a/examples/step-50/doc/intro.dox b/examples/step-50/doc/intro.dox index 99666726d3..e597798731 100644 --- a/examples/step-50/doc/intro.dox +++ b/examples/step-50/doc/intro.dox @@ -30,7 +30,7 @@ most of what needs to be done is provided by deal.II itself. These are
  5. The solver on the coarsest level; here, we use MGCoarseGridHouseholder.
  6. The smoother on all other levels, which in our case will be the MGSmootherRelaxation class using SOR as the underlying method -
  7. And MGMatrix, a class having a special level multiplication, i.e. we +
  8. And mg::Matrix, a class having a special level multiplication, i.e. we basically store one matrix per grid level and allow multiplication with it. diff --git a/include/deal.II/multigrid/mg_base.h b/include/deal.II/multigrid/mg_base.h index 9129713cb6..8e09304e0f 100644 --- a/include/deal.II/multigrid/mg_base.h +++ b/include/deal.II/multigrid/mg_base.h @@ -38,8 +38,8 @@ DEAL_II_NAMESPACE_OPEN * multilevel algorithms. It has no relation to the actual matrix type and * takes the vector class as only template argument. * - * Usually, the derived class MGMatrix, operating on an MGLevelObject of - * matrices will be sufficient for applications. + * Usually, the derived class mg::Matrix, which operates on an MGLevelObject + * of matrices, will be sufficient for applications. * * @author Guido Kanschat, 2002 */ diff --git a/include/deal.II/multigrid/mg_matrix.h b/include/deal.II/multigrid/mg_matrix.h index 0f6b257a63..d513186345 100644 --- a/include/deal.II/multigrid/mg_matrix.h +++ b/include/deal.II/multigrid/mg_matrix.h @@ -110,7 +110,7 @@ public: /** * Set the matrix object to be used. The matrix object must exist longer as - * the @p MGMatrix object, since only a pointer is stored. + * the @p MGMatrixSelect object, since only a pointer is stored. */ void set_matrix (MGLevelObject *M);