commit last state
[ppam-mpi.git] / code / 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(Real* dissimilarities, uint32_t nbItems, uint32_t nbClusters,
11 int clustOnMedoids, uint32_t nbStart, uint32_t maxNbIter, Result_t* result);
12
13 #endif