From 825c9639ec2998aab4133dc11d97402a1beee81a Mon Sep 17 00:00:00 2001 From: bangerth Date: Mon, 22 Jul 2013 19:21:14 +0000 Subject: [PATCH] Fix the current failure of the various dof_test_21_b variants. git-svn-id: https://svn.dealii.org/trunk@30101 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/source/dofs/dof_tools.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/source/dofs/dof_tools.cc b/deal.II/source/dofs/dof_tools.cc index c7bcd8cd8d..10bf20eae2 100644 --- a/deal.II/source/dofs/dof_tools.cc +++ b/deal.II/source/dofs/dof_tools.cc @@ -2909,9 +2909,9 @@ namespace DoFTools face_orientation, face_flip, face_rotation)]; // And finally constrain the two DoFs respecting component_mask: - if (transformation(i,j) != 0) + if (transformation(i,jj) != 0) constraint_matrix.add_entry(dofs_2[i], dofs_1[j], - transformation(i,j)); + transformation(i,jj)); } } } -- 2.39.5