10#include <dolfinx/graph/AdjacencyList.h>
59std::tuple<graph::AdjacencyList<std::int32_t>, std::vector<std::int64_t>,
60 std::size_t, std::vector<std::int32_t>>
62 const std::vector<std::span<const std::int64_t>>& cells,
63 std::optional<std::int32_t> max_facet_to_cell_links = 2);
96graph::AdjacencyList<std::int64_t>
98 const std::vector<std::span<const std::int64_t>>& cells,
99 std::optional<std::int32_t> max_facet_to_cell_links = 2);
Mesh data structures and algorithms on meshes.
Definition DofMap.h:32
std::tuple< graph::AdjacencyList< std::int32_t >, std::vector< std::int64_t >, std::size_t, std::vector< std::int32_t > > build_local_dual_graph(std::span< const CellType > celltypes, const std::vector< std::span< const std::int64_t > > &cells, std::optional< std::int32_t > max_facet_to_cell_links=2)
Compute the local part of the dual graph (cell-cell connections via facets) and facets with only one ...
Definition graphbuild.cpp:405
CellType
Cell type identifier.
Definition cell_types.h:22
graph::AdjacencyList< std::int64_t > build_dual_graph(MPI_Comm comm, std::span< const CellType > celltypes, const std::vector< std::span< const std::int64_t > > &cells, std::optional< std::int32_t > max_facet_to_cell_links=2)
Build distributed mesh dual graph (cell-cell connections via facets) from minimal mesh data.
Definition graphbuild.cpp:613