Skip to content

Commit

Permalink
v1.3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
fobos123deimos committed Sep 18, 2024
1 parent 854ef61 commit 525c09c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = fast_wave
version = 1.3.10
version = 1.3.11
description = Package for the calculation of the time-independent wavefunction.
author = Matheus Gomes Cordeiro
author_email = matheusgomescord@gmail.com
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
long_description = fh.read()

name = "fast_wave"
version = "1.3.10"
version = "1.3.11"
description = "Package for the calculation of the time-independent wavefunction."
author_email = "matheusgomescord@gmail.com"
url = "https://github.com/pikachu123deimos/fast-wave"
Expand Down
4 changes: 2 additions & 2 deletions src/fast_wave/wavefunction.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def wavefunction_smod(n: np.uint64, x:np.float64, more_fast:bool = True) -> np.f
r0 = r1
r1 = r2

return r2
return r1


@nb.jit(nopython=True, looplift=True, nogil=True, boundscheck=False, cache=True)
Expand Down Expand Up @@ -264,7 +264,7 @@ def c_wavefunction_smod(n: np.uint64, x: np.complex128, more_fast:bool = True) -
r0 = r1
r1 = r2

return r2
return r1


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

0 comments on commit 525c09c

Please sign in to comment.