From: Timo Heister Date: Fri, 22 Sep 2023 20:14:45 +0000 (-0400) Subject: fix AffineConstraints::copy_from X-Git-Tag: relicensing~470^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7ab20ed3d75f4f5725aa5e32532d9a28ca09f4a0;p=dealii.git fix AffineConstraints::copy_from We forgot to copy new fields introduced in #15789 --- 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; }