From: wolf Date: Thu, 30 May 2002 12:37:44 +0000 (+0000) Subject: First round of eliminating calls to FEValues that expose internal data structures. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ddb89285c2120c1555aef0b0bcf6dd67aab0f29;p=dealii-svn.git First round of eliminating calls to FEValues that expose internal data structures. git-svn-id: https://svn.dealii.org/trunk@5935 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-6/step-6.cc b/deal.II/examples/step-6/step-6.cc index 96163f9add..9fa34ada54 100644 --- a/deal.II/examples/step-6/step-6.cc +++ b/deal.II/examples/step-6/step-6.cc @@ -513,29 +513,22 @@ void LaplaceProblem::assemble_system () cell_rhs.clear (); fe_values.reinit (cell); - const FullMatrix - & shape_values = fe_values.get_shape_values(); - const std::vector > > - & shape_grads = fe_values.get_shape_grads(); - const std::vector - & JxW_values = fe_values.get_JxW_values(); - const std::vector > - & q_points = fe_values.get_quadrature_points(); - - coefficient.value_list (q_points, coefficient_values); + + coefficient.value_list (fe_values.get_quadrature_points(), + coefficient_values); for (unsigned int q_point=0; q_point