From: Wolfgang Bangerth Date: Tue, 7 May 2024 15:15:20 +0000 (+0530) Subject: Merge pull request #16967 from tjhei/step-77-constraints X-Git-Tag: v9.6.0-rc1~311 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb859b57243a464313b77f4b9da85efb2fe73ef9;p=dealii.git Merge pull request #16967 from tjhei/step-77-constraints step-77: use AffineConstraints only --- eb859b57243a464313b77f4b9da85efb2fe73ef9 diff --cc examples/step-77/step-77.cc index a279deddcf,30fc66af84..4ca1c811f3 --- a/examples/step-77/step-77.cc +++ b/examples/step-77/step-77.cc @@@ -109,9 -108,10 +108,10 @@@ namespace Step7 Triangulation triangulation; DoFHandler dof_handler; - FE_Q fe; + const FE_Q fe; - AffineConstraints hanging_node_constraints; + AffineConstraints zero_constraints; + AffineConstraints nonzero_constraints; SparsityPattern sparsity_pattern; SparseMatrix jacobian_matrix;