Skip to content

Commit

Permalink
cleaner check
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.r-project.org/R/trunk@8011 00db46b3-68df-0310-9c12-caf00c1e9a41
  • Loading branch information
maechler committed Feb 7, 2000
1 parent 4767d8e commit eee806d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/nmath/qlnorm.c
Expand Up @@ -33,7 +33,6 @@ double qlnorm(double p, double logmean, double logsd, int lower_tail, int log_p)
R_Q_P01_check(p);

if (p == R_DT_1) return ML_POSINF;
if (R_DT_qIv(p) > 0)
return exp(qnorm(p, logmean, logsd, lower_tail, log_p));
return 0;
if (p == R_DT_0) return 0;
return exp(qnorm(p, logmean, logsd, lower_tail, log_p));
}

0 comments on commit eee806d

Please sign in to comment.