https://mooseframework.inl.gov
GhostAllPointNeighbors.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://mooseframework.inl.gov
3 //*
4 //* All rights reserved, see COPYRIGHT for full restrictions
5 //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6 //*
7 //* Licensed under LGPL 2.1, please see LICENSE for details
8 //* https://www.gnu.org/licenses/lgpl-2.1.html
9 
10 #pragma once
11 
12 #include "RelationshipManager.h"
13 
19 {
20 public:
22 
24 
26 
27  void operator()(const MeshBase::const_element_iterator & range_begin,
28  const MeshBase::const_element_iterator & range_end,
30  map_type & coupled_elements) override;
31 
32  std::unique_ptr<GhostingFunctor> clone() const override;
33 
34  std::string getInfo() const override;
35 
36  virtual bool operator>=(const RelationshipManager & other) const override;
37 };
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
std::map< const Elem *, const CouplingMatrix *, CompareDofObjectsByPIDAndThenID > map_type
static InputParameters validParams()
uint8_t processor_id_type
std::string getInfo() const override
Method for returning relationship manager information (suitable for console output).
std::unique_ptr< GhostingFunctor > clone() const override
GhostAllPointNeighbors(const InputParameters &)
RelationshipManagers are used for describing what kinds of non-local resources are needed for an obje...
void operator()(const MeshBase::const_element_iterator &range_begin, const MeshBase::const_element_iterator &range_end, processor_id_type p, map_type &coupled_elements) override
Ghosts all point neighbors (not including periodic neighbors) regardless of the dimensionality of the...
virtual bool operator>=(const RelationshipManager &other) const override
Whether this relationship manager provides more or the same amount and type of ghosting as the rhs...