From: Wolfgang Bangerth Date: Fri, 26 Oct 2007 01:07:16 +0000 (+0000) Subject: Fix an actual bug: wrong index X-Git-Tag: v8.0.0~9711 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=36a4559d09873f16c9f82abd06797c305544eb8e;p=dealii.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)); };