GraphBuilder.h

Note

The documentation on this page was automatically extracted from the DOLFIN C++ code and may need to be edited or expanded.

class GraphBuilder

This class builds a Graph corresponding to various objects

static Graph local_graph(const Mesh& mesh, const GenericDofMap& dofmap0, const GenericDofMap& dofmap1)

Build local graph from dofmap

static Graph local_graph(const Mesh& mesh, const std::vector<std::size_t>& coloring_type)

Build local graph from mesh (general version)

static Graph local_graph(const Mesh& mesh, std::size_t dim0, std::size_t dim1)

Build local graph (specialized version)

static void compute_dual_graph(const MPI_Comm mpi_comm, const LocalMeshData& mesh_data, std::vector<std::set<std::size_t>>& local_graph, std::set<std::size_t>& ghost_vertices)

Build distributed dual graph (cell-cell connections) for from LocalMeshData

Previous topic

Graph.h

Next topic

SCOTCH.h

This Page