mirror of
http://43.156.76.180:8026/YuuMJ/EukPhylo.git
synced 2025-12-28 01:30:26 +08:00
24 lines
500 B
C++
24 lines
500 B
C++
// $Id: minSpanTree.h 409 2005-06-28 13:12:24Z ninio $
|
|
|
|
#ifndef ___MIN_SPAN_TREE
|
|
#define ___MIN_SPAN_TREE
|
|
|
|
#include "definitions.h"
|
|
#include "rearangeTree.h"
|
|
|
|
|
|
using namespace std;
|
|
|
|
class minSpanTree {
|
|
public:
|
|
typedef pair<double,rearrangeTree::intPair> edgePair;
|
|
static rearrangeTree::pairSet span_tree(const VVdouble &weight, double* score);
|
|
private:
|
|
// Don't define this function! ??? why
|
|
minSpanTree& operator=(const minSpanTree& rhs);
|
|
// BNspanTree(const BNspanTree& rhs);
|
|
};
|
|
|
|
#endif
|
|
|