mirror of
http://43.156.76.180:8026/YuuMJ/EukPhylo.git
synced 2025-12-27 21:00:25 +08:00
19 lines
439 B
C++
19 lines
439 B
C++
// $Id: distances2Tree.h 962 2006-11-07 15:13:34Z privmane $
|
|
|
|
#ifndef ___DISTANCES2TREE
|
|
#define ___DISTANCES2TREE
|
|
|
|
#include "definitions.h"
|
|
#include "tree.h"
|
|
#include <string>
|
|
using namespace std;
|
|
|
|
class distances2Tree {
|
|
public:
|
|
virtual ~distances2Tree() {}
|
|
virtual distances2Tree* clone() const =0;
|
|
virtual tree computeTree(VVdouble distances, const vector<string>& names, const tree * const constriantTree = NULL) = 0;
|
|
};
|
|
|
|
#endif
|