Skip to content

Commit 196d1fa

Browse files
committed
fix naming
1 parent ae6c1bb commit 196d1fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc3/step_methods/hmc/nuts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def log1mexp_numpy(x):
4545
np.log1p(-np.exp(-x)))
4646

4747

48-
def logdiffexp(a, b):
48+
def logdiffexp_numpy(a, b):
4949
"""log(exp(a) - exp(b))"""
5050
return a + log1mexp_numpy(a - b)
5151

0 commit comments

Comments
 (0)