From: Wolfgang Bangerth Date: Mon, 22 Jul 2013 19:21:14 +0000 (+0000) Subject: Fix the current failure of the various dof_test_21_b variants. X-Git-Tag: v8.0.0~21 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52529cc08da1cdd2a4bacf789c68f481f9746a49;p=dealii.git 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 --- 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)); } } }