complete first draft of package
[epclust.git] / old_C_code / stage1 / src / Algorithm / pam.h
1 #ifndef PPAM_PAM_H
2 #define PPAM_PAM_H
3
4 #include "Util/types.h"
5
6 #define NSTART 5
7 #define MAXITER 100
8
9 // Core PAM algorithm from a 'flat' dissimilarity matrix
10 void pam(float* dissimilarities, uint32_t nbItems, uint32_t nbClusters,
11 int clustOnMedoids, uint32_t nbStart, uint32_t maxNbIter, Result_t* result);
12
13 #endif