From: bangerth Date: Wed, 15 Aug 2007 04:19:41 +0000 (+0000) Subject: Replace old-style tags by doxygen tags X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7074384fd3d520f48267c6f2cb75b727738eb083;p=dealii-svn.git Replace old-style tags by doxygen tags git-svn-id: https://svn.dealii.org/trunk@14952 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/include/base/geometry_info.h b/deal.II/base/include/base/geometry_info.h index 5ea1765141..ea280e6b0d 100644 --- a/deal.II/base/include/base/geometry_info.h +++ b/deal.II/base/include/base/geometry_info.h @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 by the deal.II authors +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -637,10 +637,10 @@ struct GeometryInfo * and arrange the vertices, such * that UCD understands them. * - * \begin{verbatim} + * @code * for (i=0; i< n_vertices; ++i) * out << cell->vertex(ucd_to_deal[i]); - * \end{verbatim} + * @endcode * * As the vertex numbering in * deal.II versions <= 5.1 @@ -665,10 +665,10 @@ struct GeometryInfo * and arrange the vertices, such * that OpenDX understands them. * - * \begin{verbatim} + * @code * for (i=0; i< n_vertices; ++i) * out << cell->vertex(dx_to_deal[i]); - * \end{verbatim} + * @endcode */ static const unsigned int dx_to_deal[vertices_per_cell]; diff --git a/deal.II/lac/include/lac/filtered_matrix.h b/deal.II/lac/include/lac/filtered_matrix.h index 399b20881c..b4431c09c4 100644 --- a/deal.II/lac/include/lac/filtered_matrix.h +++ b/deal.II/lac/include/lac/filtered_matrix.h @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 by the deal.II authors +// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -54,10 +54,10 @@ template class Vector; * Lagrangian $L=1/2 x^T A x - x^T b + l^T B_D x$, where $l$ * is a Lagrange multiplier for the constraints. The stationarity * condition then reads - * \begin{verbatim} + * @code * [ A B_D^T ] [x] = [b ] * [ B_D 0 ] [l] = [g_D] - * \end{verbatim} + * @endcode * * The first equation then reads $B_D^T l = b-Ax$. On the other hand, * if we left-multiply the first equation by $B_D^T B_D$, we obtain