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

MatrixFreeTools: small clean up #13373

Merged
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion include/deal.II/matrix_free/tools.h
Original file line number Diff line number Diff line change
Expand Up @@ -1026,7 +1026,7 @@ namespace MatrixFreeTools
{
integrator.reinit(cell);

unsigned int const n_filled_lanes =
const unsigned int n_filled_lanes =
matrix_free.n_active_entries_per_cell_batch(cell);

for (unsigned int v = 0; v < n_filled_lanes; ++v)
Expand Down
4 changes: 0 additions & 4 deletions tests/matrix_free/compute_diagonal_07.cc
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,13 @@ test()
DoFTools::make_zero_boundary_constraints(dof_handler_q, constraints_q);
constraints_q.close();

constraints_q.print(std::cout);

AffineConstraints<Number> constraints_system;
DoFTools::make_hanging_node_constraints(dof_handler_system,
constraints_system);
DoFTools::make_zero_boundary_constraints(dof_handler_system,
constraints_system);
constraints_system.close();

constraints_system.print(std::cout);

typename MatrixFree<dim, Number, VectorizedArrayType>::AdditionalData
additional_data;
additional_data.mapping_update_flags = update_values | update_gradients;
Expand Down