From: bangerth Date: Mon, 29 Sep 2008 18:55:34 +0000 (+0000) Subject: Fix comment. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=27180ab35860a801af30098769024eb69bc5293a;p=dealii-svn.git Fix comment. git-svn-id: https://svn.dealii.org/trunk@17042 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/deal.II/create_laplace_matrix_01.cc b/tests/deal.II/create_laplace_matrix_01.cc index 8b37b5e1c2..01eb24db10 100644 --- a/tests/deal.II/create_laplace_matrix_01.cc +++ b/tests/deal.II/create_laplace_matrix_01.cc @@ -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 matrix; matrix.reinit (sparsity); - Functions::ExpFunction coefficient; + Functions::ExpFunction rhs_function; Vector 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 diff --git a/tests/deal.II/create_laplace_matrix_02.cc b/tests/deal.II/create_laplace_matrix_02.cc index be47c7693f..cf41f482a5 100644 --- a/tests/deal.II/create_laplace_matrix_02.cc +++ b/tests/deal.II/create_laplace_matrix_02.cc @@ -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 matrix; matrix.reinit (sparsity); - Functions::ExpFunction coefficient; + Functions::ExpFunction rhs_function; Vector 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 diff --git a/tests/deal.II/create_laplace_matrix_03.cc b/tests/deal.II/create_laplace_matrix_03.cc index 9401b9a3b0..2b3a7b33a2 100644 --- a/tests/deal.II/create_laplace_matrix_03.cc +++ b/tests/deal.II/create_laplace_matrix_03.cc @@ -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 matrix; matrix.reinit (sparsity); - Functions::ExpFunction coefficient; + Functions::ExpFunction rhs_function; Vector 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 diff --git a/tests/deal.II/create_laplace_matrix_04.cc b/tests/deal.II/create_laplace_matrix_04.cc index 5d51810f75..ffcee29b9d 100644 --- a/tests/deal.II/create_laplace_matrix_04.cc +++ b/tests/deal.II/create_laplace_matrix_04.cc @@ -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 matrix; matrix.reinit (sparsity); - Functions::ExpFunction coefficient; + Functions::ExpFunction rhs_function; Vector 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