From: bangerth Date: Fri, 26 Oct 2007 01:07:16 +0000 (+0000) Subject: Fix an actual bug: wrong index X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dfaad135cf34ede6139c14ca0cc77dfd36cf36c7;p=dealii-svn.git Fix an actual bug: wrong index git-svn-id: https://svn.dealii.org/trunk@15380 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-9/step-9.cc b/deal.II/examples/step-9/step-9.cc index 18060472ce..d32f1ae4db 100644 --- a/deal.II/examples/step-9/step-9.cc +++ b/deal.II/examples/step-9/step-9.cc @@ -1068,7 +1068,7 @@ assemble_system_interval (const typename DoFHandler::active_cell_iterator & delta * (advection_directions[q_point] * fe_values.shape_grad(i,q_point)) ) * - rhs_values[i] * + rhs_values[q_point] * fe_values.JxW (q_point)); };