10#include <dolfinx/graph/AdjacencyList.h>
61std::tuple<graph::AdjacencyList<std::int32_t>, std::vector<std::int64_t>, int,
62 std::vector<std::int32_t>>
64 const std::vector<std::span<const std::int64_t>>& cells,
65 std::optional<std::int32_t> max_facet_to_cell_links,
101graph::AdjacencyList<std::int64_t>
103 const std::vector<std::span<const std::int64_t>>& cells,
104 std::optional<std::int32_t> max_facet_to_cell_links,
105 int num_threads = 1);
Mesh data structures and algorithms on meshes.
Definition DofMap.h:32
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, int num_threads=1)
Build distributed mesh dual graph (cell-cell connections via facets) from minimal mesh data.
Definition graphbuild.cpp:867
std::tuple< graph::AdjacencyList< std::int32_t >, std::vector< std::int64_t >, int, 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, int num_threads)
Compute the local part of the dual graph (cell-cell connections via facets) and facets with only one ...
Definition graphbuild.cpp:564
CellType
Cell type identifier.
Definition cell_types.h:22