From d5e21ff9ea07b881f6b4e6a8776af21c47420445 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 27 Feb 2001 12:00:31 +0000 Subject: [PATCH] Fix trivial bug. git-svn-id: https://svn.dealii.org/trunk@4041 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/dofs/dof_tools.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5