Merge pull request #77 from HugoStrand/unstable

[sumk] gf.N1 deprecation warning fix
This commit is contained in:
mzingl 2017-10-17 20:03:12 +02:00 committed by GitHub
commit d181378115
1 changed files with 1 additions and 1 deletions

View File

@ -521,7 +521,7 @@ class SumkDFT(object):
set_up_G_latt = True
else: # Check that existing GF is consistent
G_latt = getattr(self, "G_latt_" + iw_or_w)
GFsize = [gf.N1 for bname, gf in G_latt]
GFsize = [gf.target_shape[0] for bname, gf in G_latt]
unchangedsize = all([self.n_orbitals[ik, ntoi[spn[isp]]] == GFsize[
isp] for isp in range(self.n_spin_blocks[self.SO])])
if not unchangedsize: