From: David Wells Date: Mon, 21 Jun 2021 21:32:26 +0000 (-0400) Subject: Fix another minor mistake. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=992e1a06298110a4aa25ebfeccb316ca85b01bcb;p=release-papers.git Fix another minor mistake. Only DoFHandler iterators have get_fe(). --- diff --git a/9.3/paper.tex b/9.3/paper.tex index d8b8e47..df540a8 100644 --- a/9.3/paper.tex +++ b/9.3/paper.tex @@ -683,7 +683,7 @@ cell-local arrays need to be resized for each cell (as has previously already been the case in the $hp$-context): \begin{c++} std::vector local_rhs; -for (const auto &cell : tria.active_cell_iterators()) +for (const auto &cell : dof_handler.active_cell_iterators()) { hp_fe_values.reinit(cell); local_rhs.resize(cell->get_fe().n_dofs_per_cell());