Skip to content

Commit

Permalink
Fixed the emin bug (closes #2)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmikaitis committed Apr 30, 2024
1 parent e3b5672 commit c63547f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpfloat_template.h
Original file line number Diff line number Diff line change
Expand Up @@ -1211,7 +1211,7 @@ GENERATE_UNIVARIATE_MATH_H(lgamma, lgamma)
if (temp == FP_ILOGB0 || temp == FP_ILOGBNAN || temp == INT_MAX) { \
params.precision = DEFPREC-1; \
params.emax = DEFEMAX; \
params.emax = DEFEMIN; \
params.emin = DEFEMIN; \
} else { \
params.precision = temp + 1; \
params.ftzthreshold = 1.0; \
Expand Down

0 comments on commit c63547f

Please sign in to comment.