Skip to content

Commit

Permalink
use scipy in lambdify
Browse files Browse the repository at this point in the history
  • Loading branch information
adrn committed Aug 22, 2024
1 parent e0a73e0 commit 0e36291
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions gala/potential/potential/tests/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,14 +350,15 @@ def lowergamma(a, x): # noqa
return gammainc(a, x) * gamma(a)

modules = [
"numpy",
{
"atan": np.arctan,
"lowergamma": lowergamma,
# "lowergamma": lowergamma,
"gamma": gamma,
"re": np.real,
"im": np.imag,
},
"numpy",
"scipy",
"sympy",
]

Expand Down

0 comments on commit 0e36291

Please sign in to comment.