diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/sno_charge.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sno_charge.c b/src/sno_charge.c index de0f2b3..fcb43d3 100644 --- a/src/sno_charge.c +++ b/src/sno_charge.c @@ -119,7 +119,7 @@ double get_log_pq(double q, int n) if (n > MAX_PE) { /* Assume the distribution is gaussian by the central limit theorem. */ - return log(norm(q,n*qmean,sqrt(n)*qstd)); + return log_norm(q,n*qmean,sqrt(n)*qstd); } if (q < qlo || q > qhi) return -INFINITY; |