10 #ifndef META_GRAPH_ALGORITHMS_SEARCH_H_
11 #define META_GRAPH_ALGORITHMS_SEARCH_H_
28 template <
class Graph>
29 std::vector<node_id> myopic_search(Graph& g, node_id src, node_id dest);
37 template <
class Graph>
38 std::vector<node_id> bfs(Graph& g, node_id src, node_id dest);