]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Make an input variable 'const'. 14860/head
authorWolfgang Bangerth <bangerth@colostate.edu>
Thu, 9 Mar 2023 02:56:46 +0000 (19:56 -0700)
committerWolfgang Bangerth <bangerth@colostate.edu>
Thu, 9 Mar 2023 02:56:46 +0000 (19:56 -0700)
examples/step-69/step-69.cc

index c013a95546c01d5ee39a13cd9f145562e9493772..2306140cd5c3a051be7ab1ece66bda759ef8feb9 100644 (file)
@@ -367,11 +367,11 @@ namespace Step69
   // classes at hand we can now implement the explicit time-stepping scheme
   // that was introduced in the discussion above. The main method of the
   // <code>%TimeStepping</code> class is <code>make_one_step(vector_type &U,
-  // double t)</code> that takes a reference to a state vector
+  // const double t)</code> that takes a reference to a state vector
   // <code>U</code> and a time point <code>t</code> (as input arguments)
   // computes the updated solution, stores it in the vector
   // <code>temp</code>, swaps its contents with the vector <code>U</code>,
-  // and returns the chosen step-size $\tau$.
+  // and finally returns the chosen step-size $\tau$.
   //
   // The other important method is <code>prepare()</code> which primarily
   // sets the proper partition and sparsity pattern for the temporary
@@ -398,7 +398,7 @@ namespace Step69
 
     void prepare();
 
-    double make_one_step(vector_type &U, double t);
+    double make_one_step(vector_type &U, const double t);
 
   private:
     const MPI_Comm mpi_communicator;
@@ -1755,7 +1755,7 @@ namespace Step69
   // <code>offline_data->sparsity_pattern</code>).
 
   template <int dim>
-  double TimeStepping<dim>::make_one_step(vector_type &U, double t)
+  double TimeStepping<dim>::make_one_step(vector_type &U, const double t)
   {
     const auto &n_locally_owned    = offline_data->n_locally_owned;
     const auto &n_locally_relevant = offline_data->n_locally_relevant;

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.