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