mirror of
https://github.com/pfloos/quack
synced 2024-11-19 04:22:39 +01:00
double float precision integrals
This commit is contained in:
parent
76db32142b
commit
324298fd84
@ -96,7 +96,7 @@ def write_matrix_to_file(matrix,size,file,cutoff=1e-15):
|
||||
for i in range(size):
|
||||
for j in range(i,size):
|
||||
if abs(matrix[i][j]) > cutoff:
|
||||
f.write(str(i+1)+' '+str(j+1)+' '+"{:E}".format(matrix[i][j]))
|
||||
f.write(str(i+1)+' '+str(j+1)+' '+"{}".format(matrix[i][j]))
|
||||
f.write('\n')
|
||||
f.close()
|
||||
|
||||
@ -125,7 +125,7 @@ def write_tensor_to_file(tensor,size,file,cutoff=1e-15):
|
||||
for k in range(i,size):
|
||||
for l in range(j,size):
|
||||
if abs(tensor[i][k][j][l]) > cutoff:
|
||||
f.write(str(i+1)+' '+str(j+1)+' '+str(k+1)+' '+str(l+1)+' '+"{:E}".format(tensor[i][k][j][l]))
|
||||
f.write(str(i+1)+' '+str(j+1)+' '+str(k+1)+' '+str(l+1)+' '+"{}".format(tensor[i][k][j][l]))
|
||||
f.write('\n')
|
||||
f.close()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user