mirror of
http://43.156.76.180:8026/YuuMJ/EukPhylo.git
synced 2025-12-28 03:20:25 +08:00
17 lines
350 B
C++
17 lines
350 B
C++
// Kishino-Hasegawa Test 2013 02 27 Eli Levy Karin
|
|
|
|
#ifndef ___KH_CALCULATION
|
|
#define ___KH_CALCULATION
|
|
|
|
#include "math.h"
|
|
#include <cmath>
|
|
#include "definitions.h"
|
|
|
|
namespace KH_calculation {
|
|
double calc_p_value_kh (const Vdouble & LogLikePerPositionA, const Vdouble & LogLikePerPositionB);
|
|
|
|
double get_phi (double z);
|
|
};
|
|
|
|
#endif
|