ModErn Text Analysis
META Enumerates Textual Applications
measure.h
Go to the documentation of this file.
1 
10 #ifndef META_GRAPH_ALGORITHMS_MEASURE_H_
11 #define META_GRAPH_ALGORITHMS_MEASURE_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 {
31 template <class Graph>
32 double clustering_coefficient(const Graph& graph, node_id id);
33 
39 template <class Graph>
40 double clustering_coefficient(const Graph& graph);
41 
50 template <class Graph>
51 double neighborhood_overlap(const Graph& graph, node_id src, node_id dest);
52 }
53 }
54 }
55 
57 #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