10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-07-08 04:15:59 +02:00

Fixed pseudo in gamess file

This commit is contained in:
Anthony Scemama 2017-07-24 16:26:01 +02:00
parent 76f6de92fd
commit c44a660a97

View File

@ -309,16 +309,14 @@ def write_ezfio(res, filename):
array_l_max_block.append(l_max_block) array_l_max_block.append(l_max_block)
array_z_remove.append(z_remove) array_z_remove.append(z_remove)
x = [[ filter(None,coef_n_zeta.split()) for coef_n_zeta in l.split('\n')] \ x = []
for l in array_party[1:] ] for l in array_party[1:]:
# x = [] y = []
# for l in array_party[1:]: for coef_n_zeta in l.split('\n'):
# y = [] z = coef_n_zeta.split()
# for coef_n_zeta in l.split('\n'): if z : y.append(z)
# z = coef_n_zeta.split() x.append(y)
# if z : y.append(z) matrix.append(x)
# x.append(y)
# matrix.append(x)
return (matrix, array_l_max_block, array_z_remove) return (matrix, array_l_max_block, array_z_remove)
def get_local_stuff(matrix): def get_local_stuff(matrix):