Searched refs:DGraphType (Results 1 – 1 of 1) sorted by relevance
180 using DGraphType = DirectedGraph<NodeType, EdgeType>; variable184 DirectedGraph(const DGraphType &G) : Nodes(G.Nodes) {} in DirectedGraph()185 DirectedGraph(DGraphType &&RHS) : Nodes(std::move(RHS.Nodes)) {} in DirectedGraph()186 DGraphType &operator=(const DGraphType &G) {190 DGraphType &operator=(const DGraphType &&G) {213 static_cast<const DGraphType &>(*this).findNode(N)); in findNode()