mirror of
http://43.156.76.180:8026/YuuMJ/EukPhylo.git
synced 2025-12-28 07:20:25 +08:00
25 lines
514 B
C++
25 lines
514 B
C++
// $Id: fastStartTree.h 962 2006-11-07 15:13:34Z privmane $
|
|
|
|
#ifndef ___FAST_START_TREE
|
|
#define ___FAST_START_TREE
|
|
|
|
#include "definitions.h"
|
|
#include "tree.h"
|
|
#include "stochasticProcess.h"
|
|
#include "sequenceContainer.h"
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
tree getBestMLTreeFromManyNJtrees(sequenceContainer & allTogether,
|
|
stochasticProcess& sp,
|
|
const int numOfNJtrees,
|
|
const MDOUBLE tmpForStartingTreeSearch,
|
|
const MDOUBLE epslionWeights,
|
|
ostream& out);
|
|
|
|
|
|
#endif
|