Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix compiling fe_tools_extrapolate tests without PETSc #16027

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions tests/mpi/fe_tools_extrapolate_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -201,12 +201,12 @@ check_this(const FiniteElement<dim> &fe1, const FiniteElement<dim> &fe2)
const IndexSet locally_relevant_dofs2 =
DoFTools::extract_locally_relevant_dofs(*dof2);

AffineConstraints<PetscScalar> cm1(locally_owned_dofs1,
locally_relevant_dofs1);
AffineConstraints<typename VectorType::value_type> cm1(
locally_owned_dofs1, locally_relevant_dofs1);
DoFTools::make_hanging_node_constraints(*dof1, cm1);
cm1.close();
AffineConstraints<PetscScalar> cm2(locally_owned_dofs2,
locally_relevant_dofs2);
AffineConstraints<typename VectorType::value_type> cm2(
locally_owned_dofs2, locally_relevant_dofs2);
DoFTools::make_hanging_node_constraints(*dof2, cm2);
cm2.close();

Expand Down