program print_1h2p implicit none read_wf = .True. touch read_wf call routine_2 end subroutine routine_2 implicit none integer :: i,j do i =1, n_act_orb !do i =1, 2 write(*,'(I3,x,100(F16.10,X))')i,one_anhil_one_creat(i,:,:,:,1) ! write(*,'(I3,x,100(F16.10,X))')i,one_anhil_one_creat(1,4,1,2,1) enddo end subroutine routine implicit none double precision,allocatable :: matrix_1h2p(:,:,:) allocate (matrix_1h2p(N_det,N_det,N_states)) integer :: i,j,istate do i = 1, N_det do j = 1, N_det do istate = 1, N_states matrix_1h2p(i,j,istate) = 0.d0 enddo enddo enddo if(.False.)then call give_1h2p_contrib(matrix_1h2p) double precision :: accu accu = 0.d0 do i = 1, N_det do j = 1, N_det accu += matrix_1h2p(i,j,1) * psi_coef(i,1) * psi_coef(j,1) enddo enddo print*, 'second order ', accu endif if(.True.)then do i = 1, N_det do j = 1, N_det do istate = 1, N_states matrix_1h2p(i,j,istate) = 0.d0 enddo enddo enddo call give_1h2p_new(matrix_1h2p) accu = 0.d0 do i = 1, N_det do j = 1, N_det accu += matrix_1h2p(i,j,1) * psi_coef(i,1) * psi_coef(j,1) enddo enddo endif print*, 'third order ', accu deallocate (matrix_1h2p) end