mirror of
http://43.156.76.180:8026/YuuMJ/EukPhylo.git
synced 2025-12-28 01:30:26 +08:00
31 lines
710 B
C++
31 lines
710 B
C++
// $Id: bblEMSeperate.h 962 2006-11-07 15:13:34Z privmane $
|
|
#ifndef ___BBL_EM_SEPERATE_H
|
|
#define ___BBL_EM_SEPERATE_H
|
|
|
|
#include "definitions.h"
|
|
#include "tree.h"
|
|
#include "stochasticProcess.h"
|
|
#include "sequenceContainer.h"
|
|
|
|
#include <vector>
|
|
using namespace std;
|
|
|
|
|
|
class bblEMSeperate {
|
|
public:
|
|
explicit bblEMSeperate(vector<tree>& et,
|
|
const vector<sequenceContainer>& sc,
|
|
const vector<stochasticProcess> &sp,
|
|
const vector<Vdouble *> * weights,
|
|
const int maxIterations=50,
|
|
const MDOUBLE epsilon=0.05,
|
|
const MDOUBLE tollForPairwiseDist=0.0001);
|
|
MDOUBLE getTreeLikelihood() const {return _treeLikelihood;}
|
|
|
|
private:
|
|
MDOUBLE _treeLikelihood;
|
|
|
|
};
|
|
|
|
#endif
|