Searched defs:cycle_detector (Results 1 – 2 of 2) sorted by relevance
79 struct cycle_detector : public dfs_visitor<> struct81 cycle_detector(bool& has_cycle) : m_has_cycle(has_cycle) {} in cycle_detector() function83 template < class Edge, class Graph > void back_edge(Edge, Graph&) in back_edge()89 bool& m_has_cycle;
88 struct cycle_detector : public dfs_visitor_default struct90 cycle_detector(bool& cycle) : has_cycle(cycle) {} in cycle_detector() function98 cycle_detector vis(has_cycle); in has_cycle() argument