From 205b696ea778f5b7cfe70e5531bfe6583b5af333 Mon Sep 17 00:00:00 2001 From: Heng Li Date: Thu, 24 Feb 2011 15:05:54 +0000 Subject: [PATCH] added "const" to bcf_p1_cal() --- bcftools/prob1.c | 2 +- bcftools/prob1.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bcftools/prob1.c b/bcftools/prob1.c index c820f71..9d418c5 100644 --- a/bcftools/prob1.c +++ b/bcftools/prob1.c @@ -365,7 +365,7 @@ long double bcf_p1_cal_g3(bcf_p1aux_t *p1a, double g[3]) return pd; } -int bcf_p1_cal(bcf1_t *b, bcf_p1aux_t *ma, bcf_p1rst_t *rst) +int bcf_p1_cal(const bcf1_t *b, bcf_p1aux_t *ma, bcf_p1rst_t *rst) { int i, k; long double sum = 0.; diff --git a/bcftools/prob1.h b/bcftools/prob1.h index 157ba46..b4f6a30 100644 --- a/bcftools/prob1.h +++ b/bcftools/prob1.h @@ -26,7 +26,7 @@ extern "C" { void bcf_p1_init_prior(bcf_p1aux_t *ma, int type, double theta); void bcf_p1_init_subprior(bcf_p1aux_t *ma, int type, double theta); void bcf_p1_destroy(bcf_p1aux_t *ma); - int bcf_p1_cal(bcf1_t *b, bcf_p1aux_t *ma, bcf_p1rst_t *rst); + int bcf_p1_cal(const bcf1_t *b, bcf_p1aux_t *ma, bcf_p1rst_t *rst); int bcf_p1_call_gt(const bcf_p1aux_t *ma, double f0, int k); void bcf_p1_dump_afs(bcf_p1aux_t *ma); int bcf_p1_read_prior(bcf_p1aux_t *ma, const char *fn); -- 2.39.2