]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Don't use #word but <code>word</code>.
authorbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Fri, 12 Feb 2010 22:35:38 +0000 (22:35 +0000)
committerbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Fri, 12 Feb 2010 22:35:38 +0000 (22:35 +0000)
git-svn-id: https://svn.dealii.org/trunk@20577 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/examples/step-38/step-38.cc

index 21935f5fc6e258ea566ce23482afc4ac38df7842..eb030711a7228dcdd839d3e0b9f6e02da59b237b 100644 (file)
@@ -163,16 +163,18 @@ class Step12
     FE_DGQ<dim>          fe;
     DoFHandler<dim>      dof_handler;
 
-                                    // The next four members
-                                    // represent the linear system to
-                                    // be solved. #system_matrix and
-                                    // #right_hand_side are generated
-                                    // by assemble_system(), the
-                                    // #solution is computed in
-                                    // solve(). The #sparsity_pattern
-                                    // is used to determine the
-                                    // location of nonzero elements
-                                    // in #system_matrix.
+                                    // The next four members represent the
+                                    // linear system to be
+                                    // solved. <code>system_matrix</code> and
+                                    // <code>right_hand_side</code> are
+                                    // generated by
+                                    // <code>assemble_system()</code>, the
+                                    // <code>solution</code> is computed in
+                                    // <code>solve()</code>. The
+                                    // <code>sparsity_pattern</code> is used
+                                    // to determine the location of nonzero
+                                    // elements in
+                                    // <code>system_matrix</code>.
     SparsityPattern      sparsity_pattern;
     SparseMatrix<double> system_matrix;
     
@@ -235,9 +237,9 @@ class Step12
 };
 
 
-                                // We start with the constructor. The
-                                // 1 in the constructor call of #fe
-                                // is the polynomial degree.
+                                // We start with the constructor. The 1 in
+                                // the constructor call of <code>fe</code> is
+                                // the polynomial degree.
 template <int dim>
 Step12<dim>::Step12 ()
                :
@@ -254,16 +256,14 @@ void Step12<dim>::setup_system ()
                                 // need to distribute the DoFs.
   dof_handler.distribute_dofs (fe);
 
-                                  // We start by generating the
-                                  // sparsity pattern. To this end,
-                                  // we first fill an intermediate
-                                  // object of type
-                                  // CompressedSparsityPattern with
-                                  // the couplings appearing in the
-                                  // system. After building the
-                                  // pattern, this object is copied
-                                  // to #sparsity_pattern and can be
-                                  // discarded.
+                                  // We start by generating the sparsity
+                                  // pattern. To this end, we first fill an
+                                  // intermediate object of type
+                                  // CompressedSparsityPattern with the
+                                  // couplings appearing in the system. After
+                                  // building the pattern, this object is
+                                  // copied to <code>sparsity_pattern</code>
+                                  // and can be discarded.
   
                                   // To build the sparsity pattern for DG
                                   // discretizations, we can call the

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.