mirror of
https://github.com/triqs/dft_tools
synced 2024-12-22 20:34:38 +01:00
Fix additional integer division to use floordiv
This commit is contained in:
parent
4698f9db6e
commit
d9fa71fbec
@ -154,7 +154,7 @@ class ElectronicStructure:
|
||||
nproj, ns, nk, nb = plo.shape
|
||||
ions = sorted(list(set([param['isite'] for param in self.proj_params])))
|
||||
nions = len(ions)
|
||||
norb = nproj / nions
|
||||
norb = nproj // nions
|
||||
|
||||
# Spin factor
|
||||
sp_fac = 2.0 if ns == 1 and not self.nc_flag else 1.0
|
||||
|
Loading…
Reference in New Issue
Block a user