12#include <dolfinx/graph/AdjacencyList.h>
44std::tuple<std::vector<std::shared_ptr<graph::AdjacencyList<std::int32_t>>>,
45 std::shared_ptr<graph::AdjacencyList<std::int32_t>>,
46 std::shared_ptr<common::IndexMap>, std::vector<std::int32_t>>
61std::array<std::shared_ptr<graph::AdjacencyList<std::int32_t>>, 2>
63 std::array<int, 2> d1);
Topology stores the topology of a mesh, consisting of mesh entities and connectivity (incidence relat...
Definition Topology.h:41
Miscellaneous classes, functions and types.
Definition dolfinx_common.h:8
Mesh data structures and algorithms on meshes.
Definition DofMap.h:32
CellType
Cell type identifier.
Definition cell_types.h:22
std::array< std::shared_ptr< graph::AdjacencyList< std::int32_t > >, 2 > compute_connectivity(const Topology &topology, std::array< int, 2 > d0, std::array< int, 2 > d1)
Compute connectivity (d0 -> d1) for given pair of entity types, given by topological dimension and in...
Definition topologycomputation.cpp:825
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(const Topology &topology, int dim, CellType entity_type)
Compute mesh entities of given topological dimension by computing cell-to-entity (tdim,...
Definition topologycomputation.cpp:768