Skip to content

Commit

Permalink
Update deflection_028.py
Browse files Browse the repository at this point in the history
np.longcomplex -> np.longdouble
  • Loading branch information
antolonappan authored Jun 27, 2024
1 parent 906e2a1 commit 9fc3f76
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lenspyx/remapping/deflection_028.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@

ctype = {np.dtype(np.float32): np.complex64,
np.dtype(np.float64): np.complex128,
np.dtype(np.longdouble): np.longcomplex,
np.dtype(np.longdouble): np.longdouble,
np.float32: np.complex64,
np.float64: np.complex128,
np.longdouble: np.longcomplex}
np.longdouble: np.longdouble}
rtype = {np.dtype(np.complex64): np.float32,
np.dtype(np.complex128): np.float64,
np.dtype(np.longcomplex): np.longdouble,
np.dtype(np.longdouble): np.longdouble,
np.complex64: np.float32,
np.complex128: np.float64,
np.longcomplex: np.longdouble}
np.longdouble: np.longdouble}

def ducc_sht_mode(gclm, spin):

Expand Down

0 comments on commit 9fc3f76

Please sign in to comment.