]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Avoid using '**/' at the end of comments. 6400/head
authorDavid Wells <wellsd2@rpi.edu>
Mon, 30 Apr 2018 13:09:25 +0000 (09:09 -0400)
committerDavid Wells <wellsd2@rpi.edu>
Mon, 30 Apr 2018 13:09:25 +0000 (09:09 -0400)
include/deal.II/grid/manifold_lib.h
include/deal.II/matrix_free/fe_evaluation.h
include/deal.II/matrix_free/matrix_free.h
source/base/quadrature_lib.cc

index 6a0f3e18407d9630361c13d66e4852f986178940..5d651f0660215830df83ffe9940139c88fbb3f7f 100644 (file)
@@ -355,7 +355,7 @@ private:
 
   /**
    * A manifold description to be used for get_new_point in 2D.
-   **/
+   */
   const PolarManifold<spacedim> polar_manifold;
 };
 
index 0e0389b60baffa965435a6da5a6edaf1c656d792..e664e073ffe5d87582b53e66dc54fac00264cccb 100644 (file)
@@ -911,12 +911,12 @@ protected:
 
   /**
    * A pointer to the normal vectors at faces.
-   **/
+   */
   const Tensor<1,dim,VectorizedArray<Number> > *normal_vectors;
 
   /**
    * A pointer to the normal vectors times the jacobian at faces.
-   **/
+   */
   const Tensor<1,dim,VectorizedArray<Number> > *normal_x_jacobian;
 
   /**
@@ -933,7 +933,7 @@ protected:
   /**
    * Flag holding information whether a face is an interior or exterior face
    * according to the defined direction of the normal.  Not used for cells.
-   **/
+   */
   bool is_interior_face;
 
   /**
index 22fd5bc7cd13ba5082762c5b7f8be6efea583c58..d2ee183d39c5073f6444b3c7551cbe8862ea8c08 100644 (file)
@@ -385,7 +385,7 @@ public:
      * the fabric, it may be faster to not overlap and wait for the data to
      * arrive. The default is true, i.e., communication and computation are
      * overlapped.
-     **/
+     */
     bool                overlap_communication_computation;
 
     /**
@@ -394,7 +394,7 @@ public:
      * MatrixFree should have access to all neighbors on locally owned cells,
      * this option enables adding the respective faces at the end of the face
      * range.
-     **/
+     */
     bool                hold_all_faces_to_owned_cells;
 
     /**
index b13d48904af4315f9f04ddce57e834e235c1179a..e9c59f755387f957f61cef3d4585d4b72197a89d 100644 (file)
@@ -854,11 +854,9 @@ template <int dim>
 QTelles<dim>::QTelles (
   const Quadrature<1> &base_quad, const Point<dim> &singularity)
   :
-/**
-* We need the explicit implementation if dim == 1. If dim > 1 we use the
-* former implementation and apply a tensorial product to obtain the higher
-* dimensions.
-**/
+  // We need the explicit implementation if dim == 1. If dim > 1 we use the
+  // former implementation and apply a tensorial product to obtain the higher
+  // dimensions.
   Quadrature<dim>(
     dim == 2 ?
     QAnisotropic<dim>(
@@ -877,10 +875,8 @@ template <int dim>
 QTelles<dim>::QTelles (
   const unsigned int n, const Point<dim> &singularity)
   :
-/**
-* In this case we map the standard Gauss Legendre formula using the given
-* singularity point coordinates.
-**/
+  // In this case we map the standard Gauss Legendre formula using the given
+  // singularity point coordinates.
   Quadrature<dim>(QTelles<dim>(QGauss<1>(n), singularity))
 {}
 
@@ -890,15 +886,11 @@ template <>
 QTelles<1>::QTelles (
   const Quadrature<1> &base_quad, const Point<1> &singularity)
   :
-/**
-* We explicitly implement the Telles' variable change if dim == 1.
-**/
+  // We explicitly implement the Telles' variable change if dim == 1.
   Quadrature<1>(base_quad)
 {
-  /**
-  * We define all the constants to be used in the implementation of
-  * Telles' rule
-  **/
+  // We define all the constants to be used in the implementation of
+  // Telles' rule
   const double eta_bar = singularity[0] * 2. - 1.;
   const double eta_star = eta_bar * eta_bar - 1.;
   double gamma_bar;

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.