Add missing binaty and statis library
[jabaws.git] / binaries / src / ViennaRNA / Cluster / cluster.h
1 typedef struct{
2         int   set1;
3         int   set2;
4         float distance;
5         float distance2;
6         } Union;
7
8 extern Union *wards_cluster(float **clmat);
9 extern Union *neighbour_joining(float **clmat);
10 extern void   printf_phylogeny(Union *tree, char *type);
11
12
13 /* Auxiliary information in a Union tree: 
14       tree[0].set1 contains the number of elements of tree, i.e.,
15       tree[tree[0].set1-1]] is the last one !!
16 */