Home
last modified time | relevance | path

Searched refs:evaluable_functor (Results 1 – 2 of 2) sorted by relevance

/dports/math/libmesh/libmesh-1.6.2/include/base/
H A Ddof_map.h366 void add_algebraic_ghosting_functor(GhostingFunctor & evaluable_functor,
376 void add_algebraic_ghosting_functor(std::shared_ptr<GhostingFunctor> evaluable_functor,
378 { _shared_functors[evaluable_functor.get()] = evaluable_functor;
379 this->add_algebraic_ghosting_functor(*evaluable_functor, to_mesh); }
386 void remove_algebraic_ghosting_functor(GhostingFunctor & evaluable_functor);
/dports/math/libmesh/libmesh-1.6.2/src/base/
H A Ddof_map.C1867 DofMap::add_algebraic_ghosting_functor(GhostingFunctor & evaluable_functor, in add_algebraic_ghosting_functor() argument
1870 _algebraic_ghosting_functors.insert(&evaluable_functor); in add_algebraic_ghosting_functor()
1871 evaluable_functor.set_mesh(&_mesh); in add_algebraic_ghosting_functor()
1873 _mesh.add_ghosting_functor(evaluable_functor); in add_algebraic_ghosting_functor()
1879 DofMap::remove_algebraic_ghosting_functor(GhostingFunctor & evaluable_functor) in remove_algebraic_ghosting_functor() argument
1881 _algebraic_ghosting_functors.erase(&evaluable_functor); in remove_algebraic_ghosting_functor()
1882 _mesh.remove_ghosting_functor(evaluable_functor); in remove_algebraic_ghosting_functor()
1884 auto it = _shared_functors.find(&evaluable_functor); in remove_algebraic_ghosting_functor()