Skip to content

Commit 82ad3d2

Browse files
committed
version compiling with deal.II developer dec 2022
1 parent 4bb9e8f commit 82ad3d2

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

source/bem_problem.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1601,7 +1601,7 @@ BEMProblem<dim>::solve_system(TrilinosWrappers::MPI::Vector & phi,
16011601

16021602

16031603
compute_alpha();
1604-
compute_hypersingular_free_coeffs();
1604+
//compute_hypersingular_free_coeffs();
16051605

16061606
// for (unsigned int i = 0; i < alpha.size(); i++)
16071607
// if (this_cpu_set.is_element(i))

source/boundary_conditions.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,8 +349,8 @@ BoundaryConditions<dim>::compute_errors()
349349
Teuchos::TimeMonitor LocalTimer(*ErrorsTime);
350350

351351
// We still need to communicate our results to compute the errors.
352-
//bem.compute_gradients(phi, dphi_dn);
353-
bem.compute_gradients_hypersingular(phi, dphi_dn);
352+
bem.compute_gradients(phi, dphi_dn);
353+
//bem.compute_gradients_hypersingular(phi, dphi_dn);
354354
Vector<double> localized_gradient_solution(
355355
bem.vector_gradients_solution); // vector_gradients_solution
356356
Vector<double> localized_phi(phi);

0 commit comments

Comments
 (0)