1
0
mirror of https://gitlab.com/scemama/qp_plugins_scemama.git synced 2024-11-07 14:43:41 +01:00

Minor changes

This commit is contained in:
Anthony Scemama 2021-09-07 18:46:34 +02:00
parent 568252c506
commit 7caaa775f3

View File

@ -7,9 +7,9 @@ program dmc_dress
END_DOC END_DOC
read_wf = .True. read_wf = .True.
touch read_wf touch read_wf
call pre ! call pre
call routine call routine
call save_wavefunction_general(N_det,N_states,psi_det_sorted,size(psi_coef_sorted,1),psi_coef_sorted) call save_wavefunction_general(N_det,N_states,psi_det,size(psi_coef,1),psi_coef)
end end
subroutine pre subroutine pre
@ -31,6 +31,6 @@ subroutine routine
implicit none implicit none
psi_coef(1:N_det,1) = ci_eigenvectors_dressed(1:N_det,1) psi_coef(1:N_det,1) = ci_eigenvectors_dressed(1:N_det,1)
print*,'N_det = ',N_det print*,'N_det = ',N_det
print *, 'E = ', ci_energy_dressed(1) + nuclear_repulsion print *, 'E = ', ci_energy_dressed(1)
SOFT_TOUCH psi_coef SOFT_TOUCH psi_coef
end end