Home
last modified time | relevance | path

Searched refs:DirectedGraph (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DDirectedGraph.h173 template <class NodeType, class EdgeType> class DirectedGraph {
180 using DGraphType = DirectedGraph<NodeType, EdgeType>;
182 DirectedGraph() = default;
183 explicit DirectedGraph(NodeType &N) : Nodes() { addNode(N); } in DirectedGraph() function
184 DirectedGraph(const DGraphType &G) : Nodes(G.Nodes) {} in DirectedGraph() function
185 DirectedGraph(DGraphType &&RHS) : Nodes(std::move(RHS.Nodes)) {} in DirectedGraph() function
/llvm-project-15.0.7/llvm/unittests/ADT/
H A DDirectedGraphTest.cpp30 using DGTestBase = DirectedGraph<DGTestNode, DGTestEdge>;
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DDDG.cpp31 template class llvm::DirectedGraph<DDGNode, DDGEdge>; member in llvm
/llvm-project-15.0.7/llvm/docs/DependenceGraphs/
H A Dindex.rst72 ``DirectedGraph`` class. Each implementation extends its corresponding
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DDDG.h30 using DDGBase = DirectedGraph<DDGNode, DDGEdge>;