mirror of
https://github.com/LCPQ/quantum_package
synced 2024-12-22 12:23:48 +01:00
Fixed pseudo in gamess file
This commit is contained in:
parent
76f6de92fd
commit
c44a660a97
@ -309,16 +309,14 @@ def write_ezfio(res, filename):
|
||||
array_l_max_block.append(l_max_block)
|
||||
array_z_remove.append(z_remove)
|
||||
|
||||
x = [[ filter(None,coef_n_zeta.split()) for coef_n_zeta in l.split('\n')] \
|
||||
for l in array_party[1:] ]
|
||||
# x = []
|
||||
# for l in array_party[1:]:
|
||||
# y = []
|
||||
# for coef_n_zeta in l.split('\n'):
|
||||
# z = coef_n_zeta.split()
|
||||
# if z : y.append(z)
|
||||
# x.append(y)
|
||||
# matrix.append(x)
|
||||
x = []
|
||||
for l in array_party[1:]:
|
||||
y = []
|
||||
for coef_n_zeta in l.split('\n'):
|
||||
z = coef_n_zeta.split()
|
||||
if z : y.append(z)
|
||||
x.append(y)
|
||||
matrix.append(x)
|
||||
return (matrix, array_l_max_block, array_z_remove)
|
||||
|
||||
def get_local_stuff(matrix):
|
||||
|
Loading…
Reference in New Issue
Block a user