Next version of JABA
[jabaws.git] / binaries / src / clustalw / src / tree / UPGMA / upgmadata.h
1 /**
2  * Author: Mark Larkin
3  * 
4  * Copyright (c) 2007 Des Higgins, Julie Thompson and Toby Gibson.  
5  */
6 #ifndef UPGMADATA_H
7 #define UPGMADATA_H
8
9 struct distMatRow
10 {
11     distMatRow(double* p, int n)
12     {
13         ptrToDistMatRow = p;
14         numDists = n;
15     }
16     double* ptrToDistMatRow;
17     int numDists; 
18 };
19
20 const int BLANKDIST = -1;
21 const int INTERNAL = -1;
22
23 #endif