47std::tuple<std::vector<std::shared_ptr<graph::AdjacencyList<std::int32_t>>>,
 
   48           std::shared_ptr<graph::AdjacencyList<std::int32_t>>,
 
   49           std::shared_ptr<common::IndexMap>, std::vector<std::int32_t>>
 
   50compute_entities(MPI_Comm comm, 
const Topology& topology, 
int dim, 
int index);
 
   62std::array<std::shared_ptr<graph::AdjacencyList<std::int32_t>>, 2>
 
   64                     std::pair<std::int8_t, std::int8_t> d0,
 
   65                     std::pair<std::int8_t, std::int8_t> d1);
 
Definition topologycomputation.h:24
Miscellaneous classes, functions and types.
Definition dolfinx_common.h:8
Graph data structures and algorithms.
Definition dofmapbuilder.h:26
Mesh data structures and algorithms on meshes.
Definition DofMap.h:32
std::tuple< std::vector< std::shared_ptr< graph::AdjacencyList< std::int32_t > > >, std::shared_ptr< graph::AdjacencyList< std::int32_t > >, std::shared_ptr< common::IndexMap >, std::vector< std::int32_t > > compute_entities(MPI_Comm comm, const Topology &topology, int dim, int index)
Compute mesh entities of given topological dimension by computing entity-to-vertex connectivity (dim,...
Definition topologycomputation.cpp:767
std::array< std::shared_ptr< graph::AdjacencyList< std::int32_t > >, 2 > compute_connectivity(const Topology &topology, std::pair< std::int8_t, std::int8_t > d0, std::pair< std::int8_t, std::int8_t > d1)
Compute connectivity (d0 -> d1) for given pair of entity types, given by topological dimension and in...
Definition topologycomputation.cpp:817