@@ -678,7 +678,7 @@ void BEMProblem<dim>::assemble_system()
678678 cell->get_dof_indices (local_dof_indices);
679679
680680 const std::vector<Point<dim> > &q_points = fe_v.get_quadrature_points ();
681- const std::vector<Tensor<1 , dim> > &normals = fe_v.get_all_normal_vectors ();
681+ const std::vector<Tensor<1 , dim> > &normals = fe_v.get_normal_vectors ();
682682
683683 // We then form the integral over
684684 // the current cell for all
@@ -975,7 +975,7 @@ void BEMProblem<dim>::assemble_system()
975975
976976 fe_v_singular.reinit (cell);
977977
978- const std::vector<Tensor<1 , dim> > &singular_normals = fe_v_singular.get_all_normal_vectors ();
978+ const std::vector<Tensor<1 , dim> > &singular_normals = fe_v_singular.get_normal_vectors ();
979979 const std::vector<Point<dim> > &singular_q_points = fe_v_singular.get_quadrature_points ();
980980
981981 for (unsigned int q=0 ; q<singular_quadrature->size (); ++q)
@@ -1766,8 +1766,7 @@ void BEMProblem<dim>::compute_gradients(const TrilinosWrappers::MPI::Vector &glo
17661766 std::vector< Tensor<1 ,dim> > dummy_phi_surf_grads (n_q_points);
17671767
17681768 cell_it
1769- vector_cell = gradient_dh.begin_active (),
1770- vector_endc = gradient_dh.end ();
1769+ vector_cell = gradient_dh.begin_active ();
17711770
17721771 cell_it
17731772 cell = dh.begin_active (),
@@ -1785,7 +1784,7 @@ void BEMProblem<dim>::compute_gradients(const TrilinosWrappers::MPI::Vector &glo
17851784 vector_fe_v.reinit (vector_cell);
17861785 local_gradients_matrix = 0 ;
17871786 local_gradients_rhs = 0 ;
1788- const std::vector<Tensor<1 , dim> > &vector_node_normals = vector_fe_v.get_all_normal_vectors ();
1787+ const std::vector<Tensor<1 , dim> > &vector_node_normals = vector_fe_v.get_normal_vectors ();
17891788 fe_v.get_function_gradients (phi, phi_surf_grads);
17901789 fe_v.get_function_values (dphi_dn, phi_norm_grads);
17911790 unsigned int comp_i, comp_j;
@@ -1902,8 +1901,7 @@ void BEMProblem<dim>::compute_surface_gradients(const TrilinosWrappers::MPI::Vec
19021901 std::vector< Tensor<1 ,dim> > dummy_phi_surf_grads (n_q_points);
19031902
19041903 cell_it
1905- vector_cell = gradient_dh.begin_active (),
1906- vector_endc = gradient_dh.end ();
1904+ vector_cell = gradient_dh.begin_active ();
19071905
19081906 cell_it
19091907 cell = dh.begin_active (),
@@ -2021,7 +2019,7 @@ void BEMProblem<dim>::compute_normals()
20212019 vector_fe_v.reinit (vector_cell);
20222020 local_normals_matrix = 0 ;
20232021 local_normals_rhs = 0 ;
2024- const std::vector<Tensor<1 , dim> > &vector_node_normals = vector_fe_v.get_all_normal_vectors ();
2022+ const std::vector<Tensor<1 , dim> > &vector_node_normals = vector_fe_v.get_normal_vectors ();
20252023 unsigned int comp_i, comp_j;
20262024
20272025 for (unsigned int q=0 ; q<vector_n_q_points; ++q)
0 commit comments