10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-25 22:52:15 +02:00

Increase precision in MOs for qmcpack

This commit is contained in:
Anthony Scemama 2017-07-19 23:35:00 +00:00
parent a5d16ebe29
commit e77c7a5244
2 changed files with 3 additions and 2 deletions

View File

@ -19,13 +19,14 @@ end
subroutine run_wf
use f77_zmq
implicit none
integer(ZMQ_PTR), external :: new_zmq_to_qp_run_socket
integer(ZMQ_PTR) :: zmq_to_qp_run_socket
double precision :: energy(N_states)
character*(64) :: states(4)
integer :: rc, i
integer :: rc, i, ierr
call provide_everything

View File

@ -258,7 +258,7 @@ def print_mo_coef(mo_coef_block, l_l_sym):
i_a = int(l[1]) - 1
sym = l[2]
print l_label[i_a], sym, " ".join('{0: 3.8f}'.format(i)
print l_label[i_a], sym, " ".join('%20.15e'%i
for i in a[i])
if i_block != nb_block - 1: