OpenMPI  0.1.1
comparison.h
1 /*
2  This is part of the OTF library. Copyright by ZIH, TU Dresden 2005-2012.
3  Authors: Andreas Knuepfer, Robert Dietrich, Matthias Jurenz
4 */
5 
6 #ifndef COMPARISON_KMEANS_H
7 #define COMPARISON_KMEANS_H
8 
9 
10 #include <sstream>
11 
12 #include "datastructs.h"
13 
14 
15 /* process comparison; analyze process properties to determine similar or
16  different behavior patterns */
17 
18 /* do process comparison using the CLINKAGE algorithm */
19 bool ProcessComparisonCLINKAGE( AllData& alldata, ostringstream& mapdata );
20 
21 /* do process comparison using the K-means algorithm */
22 bool ProcessComparisonKMEANS( AllData& alldata, ostringstream& mapdata );
23 
24 
25 #endif /* COMPARISON_KMEANS_H */
Definition: datastructs.h:541