From 7ab20ed3d75f4f5725aa5e32532d9a28ca09f4a0 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Fri, 22 Sep 2023 16:14:45 -0400 Subject: [PATCH] fix AffineConstraints::copy_from We forgot to copy new fields introduced in #15789 --- include/deal.II/lac/affine_constraints.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/deal.II/lac/affine_constraints.h b/include/deal.II/lac/affine_constraints.h index 63a7568e2f..f0195c65c2 100644 --- a/include/deal.II/lac/affine_constraints.h +++ b/include/deal.II/lac/affine_constraints.h @@ -2590,6 +2590,9 @@ AffineConstraints::copy_from( lines_cache = other.lines_cache; local_lines = other.local_lines; sorted = other.sorted; + + locally_owned_dofs = other.locally_owned_dofs; + needed_elements_for_distribute = other.needed_elements_for_distribute; } -- 2.39.5