]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Fix the name of a variable: 'ratio' instead of 'ration'. 14668/head
authorWolfgang Bangerth <bangerth@colostate.edu>
Wed, 11 Jan 2023 18:38:37 +0000 (11:38 -0700)
committerWolfgang Bangerth <bangerth@colostate.edu>
Wed, 11 Jan 2023 18:38:37 +0000 (11:38 -0700)
While there, also make a variable 'const'.

include/deal.II/grid/reference_cell.h

index b149d0dc646f79341e0173896b6135c53147d607..e68acda8c00e322c0fa57719151b8b6c2f0d9cde 100644 (file)
@@ -2004,29 +2004,22 @@ ReferenceCell::d_linear_shape_function(const Point<dim> & xi,
                                // ScalarLagrangePolynomialPyramid::compute_value
     {
       const double Q14 = 0.25;
-      double       ration;
 
       const double r = xi[std::min(0, dim - 1)];
       const double s = xi[std::min(1, dim - 1)];
       const double t = xi[std::min(2, dim - 1)];
 
-      if (fabs(t - 1.0) > 1.0e-14)
-        {
-          ration = (r * s * t) / (1.0 - t);
-        }
-      else
-        {
-          ration = 0.0;
-        }
+      const double ratio =
+        (std::fabs(t - 1.0) > 1.0e-14 ? (r * s * t) / (1.0 - t) : 0.0);
 
       if (i == 0)
-        return Q14 * ((1.0 - r) * (1.0 - s) - t + ration);
+        return Q14 * ((1.0 - r) * (1.0 - s) - t + ratio);
       if (i == 1)
-        return Q14 * ((1.0 + r) * (1.0 - s) - t - ration);
+        return Q14 * ((1.0 + r) * (1.0 - s) - t - ratio);
       if (i == 2)
-        return Q14 * ((1.0 - r) * (1.0 + s) - t - ration);
+        return Q14 * ((1.0 - r) * (1.0 + s) - t - ratio);
       if (i == 3)
-        return Q14 * ((1.0 + r) * (1.0 + s) - t + ration);
+        return Q14 * ((1.0 + r) * (1.0 + s) - t + ratio);
       else
         return t;
     }

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.