Skip to content

Commit

Permalink
v1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fobos123deimos committed Sep 14, 2024
1 parent 8def3b5 commit fb79f73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fast_wave/wavefunction.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def hermite_sympy(n: np.uint64) -> Poly:
x = symbols("x")
return 1 if n == 0 else ((-1) ** n) * exp(x ** 2) * diff(exp(-x ** 2), x, n)

@nb.jit(nopython=True, looplift=True, nogil=True, boundscheck=False, cache=True)

def create_normalized_hermite_coefficients_matrix(n_max: np.uint64) -> np.ndarray:
"""
Create a matrix of coefficients for normalized Hermite polynomials up to order `n_max`.
Expand Down

0 comments on commit fb79f73

Please sign in to comment.