diff --git a/python/sumk_dft.py b/python/sumk_dft.py index 025b302e..779e6a77 100644 --- a/python/sumk_dft.py +++ b/python/sumk_dft.py @@ -888,7 +888,7 @@ class SumkDFT(object): make_copies=False) for g_sh in G] for ish in range(len(gf)): for name, g in gf[ish]: - g.set_from_inverse_fourier(G[ish][name]) + g.set_from_fourier(G[ish][name]) # keep a GfImTime from the supplied GfImTime elif all(isinstance(g_sh._first(), GfImTime) for g_sh in G): gf = G diff --git a/test/analyse_block_structure_from_gf2.py b/test/analyse_block_structure_from_gf2.py index 2e3c39e0..9e21c7b9 100644 --- a/test/analyse_block_structure_from_gf2.py +++ b/test/analyse_block_structure_from_gf2.py @@ -90,7 +90,7 @@ Gt = BlockGf(name_block_generator = [(name, known_moments = np.zeros((2,10,10), dtype=np.complex) known_moments[1,:] = np.eye(10) -Gt['ud'].set_from_inverse_fourier(G['ud'], known_moments) +Gt['ud'].set_from_fourier(G['ud'], known_moments) G_new = SK.analyse_block_structure_from_gf([Gt]) G_new_symm = G_new[0].copy() diff --git a/test/wien2k_convert.py b/test/wien2k_convert.py index 215200fc..16aa26f7 100644 --- a/test/wien2k_convert.py +++ b/test/wien2k_convert.py @@ -1,4 +1,3 @@ - ################################################################################ # # TRIQS: a Toolbox for Research in Interacting Quantum Systems