complete first draft of package
[epclust.git] / old_C_code / stage1 / src / Algorithm / pam.h
CommitLineData
ab4a34ef
BA
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
73d68777 10void pam(float* dissimilarities, uint32_t nbItems, uint32_t nbClusters,
ab4a34ef
BA
11 int clustOnMedoids, uint32_t nbStart, uint32_t maxNbIter, Result_t* result);
12
13#endif