From: Wolfgang Bangerth Date: Tue, 27 Feb 2001 12:00:31 +0000 (+0000) Subject: Fix trivial bug. X-Git-Tag: v8.0.0~19677 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d5e21ff9ea07b881f6b4e6a8776af21c47420445;p=dealii.git Fix trivial bug. git-svn-id: https://svn.dealii.org/trunk@4041 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/dofs/dof_tools.cc b/deal.II/deal.II/source/dofs/dof_tools.cc index fc0bff3ef2..0928d39ad8 100644 --- a/deal.II/deal.II/source/dofs/dof_tools.cc +++ b/deal.II/deal.II/source/dofs/dof_tools.cc @@ -1488,7 +1488,7 @@ DoFTools::compute_intergrid_constraints (const DoFHandler &coa // all other dofs are constrained { const unsigned int col = weight_mapping[global_dof]; - Assert (col < n_coarse_dofs, ExcInternalError()); + Assert (col < n_parameters_on_fine_grid, ExcInternalError()); unsigned int first_used_row=0; if (true)