]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Fix comment.
authorbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Mon, 29 Sep 2008 18:55:34 +0000 (18:55 +0000)
committerbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Mon, 29 Sep 2008 18:55:34 +0000 (18:55 +0000)
git-svn-id: https://svn.dealii.org/trunk@17042 0785d39b-7218-0410-832d-ea1e28bc413d

tests/deal.II/create_laplace_matrix_01.cc
tests/deal.II/create_laplace_matrix_02.cc
tests/deal.II/create_laplace_matrix_03.cc
tests/deal.II/create_laplace_matrix_04.cc

index 8b37b5e1c2986d9764680dcbeb94698309f899ad..01eb24db101b9b06301ed89b945078ec3f27d216 100644 (file)
@@ -20,9 +20,8 @@
 // the function internally has four branches, with different code used
 // for the cases with/without coefficient and scalar/vector-valued
 // finite element. we test these four cases through the _01, _02, _03,
-// and _04 tests. the version with a coefficient is tested in the
-// _0[1234]a tests, and versions without computing a right hand side
-// vectors with and without coefficient in the _0[1234][bc] tests
+// and _04 tests. the version without creating a right hand side
+// vector is tested in the _0[1234]a tests
 
 
 
@@ -91,14 +90,14 @@ check ()
   SparseMatrix<double> matrix;
   matrix.reinit (sparsity);
 
-  Functions::ExpFunction<dim> coefficient;
+  Functions::ExpFunction<dim> rhs_function;
   
   Vector<double> rhs (dof.n_dofs());
   
   MatrixTools::
     create_laplace_matrix (mapping, dof,
                        quadrature, matrix,
-                       coefficient, rhs);
+                       rhs_function, rhs);
 
                                   // since we only generate
                                   // output with two digits after
index be47c7693f22b96253c316b3023e351337cd4a64..cf41f482a5bb8be653284e1df92aee497ac1b175 100644 (file)
@@ -20,9 +20,8 @@
 // the function internally has four branches, with different code used
 // for the cases with/without coefficient and scalar/vector-valued
 // finite element. we test these four cases through the _01, _02, _03,
-// and _04 tests. the version with a coefficient is tested in the
-// _0[1234]a tests, and versions without computing a right hand side
-// vectors with and without coefficient in the _0[1234][bc] tests
+// and _04 tests. the version without creating a right hand side
+// vector is tested in the _0[1234]a tests
 
 
 
@@ -93,14 +92,14 @@ check ()
   SparseMatrix<double> matrix;
   matrix.reinit (sparsity);
 
-  Functions::ExpFunction<dim> coefficient;
+  Functions::ExpFunction<dim> rhs_function;
   
   Vector<double> rhs (dof.n_dofs());
   
   MatrixTools::
     create_laplace_matrix (mapping, dof,
                        quadrature, matrix,
-                       coefficient, rhs);
+                       rhs_function, rhs);
 
                                   // since we only generate
                                   // output with two digits after
index 9401b9a3b0c5b24d1587b4852a6468c9903c0d52..2b3a7b33a26002c893c3f36824828337db10f611 100644 (file)
@@ -20,9 +20,8 @@
 // the function internally has four branches, with different code used
 // for the cases with/without coefficient and scalar/vector-valued
 // finite element. we test these four cases through the _01, _02, _03,
-// and _04 tests. the version with a coefficient is tested in the
-// _0[1234]a tests, and versions without computing a right hand side
-// vectors with and without coefficient in the _0[1234][bc] tests
+// and _04 tests. the version without creating a right hand side
+// vector is tested in the _0[1234]a tests
 
 
 
@@ -90,15 +89,15 @@ check ()
   SparseMatrix<double> matrix;
   matrix.reinit (sparsity);
 
-  Functions::ExpFunction<dim> coefficient;
+  Functions::ExpFunction<dim> rhs_function;
   
   Vector<double> rhs (dof.n_dofs());
   
   MatrixTools::
     create_laplace_matrix (mapping, dof,
                        quadrature, matrix,
-                       coefficient, rhs,
-                       &coefficient);
+                       rhs_function, rhs,
+                       &rhs_function);
 
                                   // since we only generate
                                   // output with two digits after
index 5d51810f75ae71b7eed122c1a963aaf9a5354afd..ffcee29b9d64a59d261e38bddfcee59d50f1eff6 100644 (file)
@@ -20,9 +20,8 @@
 // the function internally has four branches, with different code used
 // for the cases with/without coefficient and scalar/vector-valued
 // finite element. we test these four cases through the _01, _02, _03,
-// and _04 tests. the version with a coefficient is tested in the
-// _0[1234]a tests, and versions without computing a right hand side
-// vectors with and without coefficient in the _0[1234][bc] tests
+// and _04 tests. the version without creating a right hand side
+// vector is tested in the _0[1234]a tests
 
 
 
@@ -92,15 +91,15 @@ check ()
   SparseMatrix<double> matrix;
   matrix.reinit (sparsity);
 
-  Functions::ExpFunction<dim> coefficient;
+  Functions::ExpFunction<dim> rhs_function;
   
   Vector<double> rhs (dof.n_dofs());
   
   MatrixTools::
     create_laplace_matrix (mapping, dof,
                        quadrature, matrix,
-                       coefficient, rhs,
-                       &coefficient);
+                       rhs_function, rhs,
+                       &rhs_function);
 
                                   // since we only generate
                                   // output with two digits after

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.