| 95 | } |
| 96 | |
| 97 | void DFSFrom(const Graph& g, gtl::ArraySlice<Node*> start, |
| 98 | const std::function<void(Node*)>& enter, |
| 99 | const std::function<void(Node*)>& leave, |
| 100 | const NodeComparator& stable_comparator, |
| 101 | const EdgeFilter& edge_filter) { |
| 102 | DFSFromHelper(g, start, enter, leave, stable_comparator, edge_filter); |
| 103 | } |
| 104 | |
| 105 | void DFSFrom(const Graph& g, gtl::ArraySlice<const Node*> start, |
| 106 | const std::function<void(const Node*)>& enter, |
no test coverage detected