mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-04 13:13:57 +01:00
437df9439d
* corrected bitmask in Full_CI_ZMQ - seemingly working shiftedbk * removed set_generators_bitmasks_as_holes_and_particles from dress_zmq * removed dress_zmq dependency to MRCC_Utils
22 lines
399 B
Fortran
22 lines
399 B
Fortran
subroutine dress_zmq()
|
|
implicit none
|
|
double precision, allocatable :: energy(:)
|
|
allocate (energy(N_states))
|
|
|
|
read_wf = .True.
|
|
SOFT_TOUCH read_wf
|
|
|
|
if (.True.) then
|
|
integer :: i,j
|
|
do j=1,N_states
|
|
do i=1,N_det
|
|
psi_coef(i,j) = CI_eigenvectors(i,j)
|
|
enddo
|
|
enddo
|
|
SOFT_TOUCH psi_coef
|
|
endif
|
|
call run_dressing(N_states,energy)
|
|
deallocate(energy)
|
|
end
|
|
|