ModErn Text Analysis
META Enumerates Textual Applications
search.h
Go to the documentation of this file.
1 
10 #ifndef META_GRAPH_ALGORITHMS_SEARCH_H_
11 #define META_GRAPH_ALGORITHMS_SEARCH_H_
12 
13 #include "graph/undirected_graph.h"
14 #include "graph/directed_graph.h"
15 
16 namespace meta
17 {
18 namespace graph
19 {
20 namespace algorithms
21 {
28 template <class Graph>
29 std::vector<node_id> myopic_search(Graph& g, node_id src, node_id dest);
30 
37 template <class Graph>
38 std::vector<node_id> bfs(Graph& g, node_id src, node_id dest);
39 }
40 }
41 }
42 
44 #endif
The ModErn Text Analysis toolkit is a suite of natural language processing, classification, information retreival, data mining, and other applications of text processing.
Definition: analyzer.h:24