From 38efcc5726ba3a362cc6a76dee1b07c246d7b675 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Wed, 29 Jun 2022 10:40:59 -0400 Subject: [PATCH] Remove ParticleHandler::locally_relevant_ids() --- include/deal.II/particles/particle_handler.h | 30 -------------------- 1 file changed, 30 deletions(-) diff --git a/include/deal.II/particles/particle_handler.h b/include/deal.II/particles/particle_handler.h index 46419dd90c..c435983718 100644 --- a/include/deal.II/particles/particle_handler.h +++ b/include/deal.II/particles/particle_handler.h @@ -654,27 +654,6 @@ namespace Particles types::particle_index get_next_free_particle_index() const; - /** - * Extract an IndexSet with global dimensions equal to - * get_next_free_particle_index(), containing the locally owned - * particle indices. - * - * This function can be used to construct distributed vectors and matrices - * to manipulate particles using linear algebra operations. - * - * Notice that it is the user's responsibility to guarantee that particle - * indices are unique, and no check is performed to verify that this is the - * case, nor that the union of all IndexSet objects on each mpi process is - * complete. - * - * @return An IndexSet of size get_next_free_particle_index(), containing - * n_locally_owned_particle() indices. - * - * @deprecated Use locally_owned_particle_ids() instead. - */ - DEAL_II_DEPRECATED IndexSet - locally_relevant_ids() const; - /** * Extract an IndexSet with global dimensions equal to * get_next_free_particle_index(), containing the locally owned @@ -1403,15 +1382,6 @@ namespace Particles output_vector.compress(VectorOperation::insert); } - - - template - inline IndexSet - ParticleHandler::locally_relevant_ids() const - { - return this->locally_owned_particle_ids(); - } - } // namespace Particles DEAL_II_NAMESPACE_CLOSE -- 2.39.5