2016-03-04 16:52:46 +01:00
|
|
|
use bitmasks
|
|
|
|
|
|
|
|
|
2016-03-11 19:35:57 +01:00
|
|
|
|
|
|
|
BEGIN_PROVIDER [ double precision, delta_ij, (N_det_ref,N_det_non_ref,N_states) ]
|
|
|
|
&BEGIN_PROVIDER [ double precision, delta_ii, (N_det_ref,N_states) ]
|
|
|
|
use bitmasks
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
! delta_ij(:,:,:) = delta_ij_old(:,:,:)
|
|
|
|
! delta_ii(:,:) = delta_ii_old(:,:)
|
|
|
|
delta_ij(:,:,:) = delta_mrcepa0_ij(:,:,:)! - delta_sub_ij(:,:,:)
|
|
|
|
delta_ii(:,:)= delta_mrcepa0_ii(:,:)! - delta_sub_ii(:,:)
|
|
|
|
END_PROVIDER
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-03-04 16:52:46 +01:00
|
|
|
BEGIN_PROVIDER [ integer, cepa0_shortcut, (0:N_det_non_ref+1) ]
|
|
|
|
&BEGIN_PROVIDER [ integer, det_cepa0_idx, (N_det_non_ref) ]
|
|
|
|
&BEGIN_PROVIDER [ integer(bit_kind), det_cepa0_active, (N_det_non_ref) ]
|
|
|
|
&BEGIN_PROVIDER [ integer(bit_kind), det_ref_active, (N_det_ref) ]
|
2016-03-11 19:35:57 +01:00
|
|
|
&BEGIN_PROVIDER [ integer(bit_kind), active_sorb, (2) ]
|
2016-03-04 16:52:46 +01:00
|
|
|
use bitmasks
|
|
|
|
implicit none
|
|
|
|
|
2016-03-11 19:35:57 +01:00
|
|
|
integer(bit_kind) :: det_noactive(N_int, 2, N_det_non_ref), nonactive_sorb(2)
|
2016-03-04 16:52:46 +01:00
|
|
|
integer i, II, j, k
|
|
|
|
logical, external :: detEq
|
|
|
|
|
|
|
|
print *, "provide cepa0"
|
2016-03-11 19:35:57 +01:00
|
|
|
active_sorb(:) = 0_8
|
|
|
|
nonactive_sorb(:) = not(0_8)
|
|
|
|
|
|
|
|
if(N_det_ref > 1) then
|
|
|
|
do i=1, N_det_ref
|
|
|
|
active_sorb(1) = ior(psi_ref(1,1,i), active_sorb(1))
|
|
|
|
active_sorb(2) = ior(psi_ref(1,2,i), active_sorb(2))
|
|
|
|
nonactive_sorb(1) = iand(psi_ref(1,1,i), nonactive_sorb(1))
|
|
|
|
nonactive_sorb(2) = iand(psi_ref(1,2,i), nonactive_sorb(2))
|
|
|
|
end do
|
|
|
|
active_sorb(1) = iand(active_sorb(1), not(nonactive_sorb(1)))
|
|
|
|
active_sorb(2) = iand(active_sorb(2), not(nonactive_sorb(2)))
|
|
|
|
end if
|
|
|
|
|
2016-03-04 16:52:46 +01:00
|
|
|
do i=1, N_det_non_ref
|
|
|
|
det_noactive(1,1,i) = iand(psi_non_ref(1,1,i), not(active_sorb(1)))
|
|
|
|
det_noactive(1,2,i) = iand(psi_non_ref(1,2,i), not(active_sorb(2)))
|
|
|
|
end do
|
|
|
|
|
|
|
|
call sort_dets_ab(det_noactive, det_cepa0_idx, cepa0_shortcut, N_det_non_ref, N_int)
|
2016-03-11 19:35:57 +01:00
|
|
|
|
|
|
|
! do i=1, N_det_non_ref
|
|
|
|
! print "(B30,B30)", det_noactive(1,1,i), det_noactive(1,2,i)
|
|
|
|
! end do
|
|
|
|
! stop
|
2016-03-04 16:52:46 +01:00
|
|
|
do i=1,N_det_ref
|
|
|
|
det_ref_active(i) = iand(psi_ref(1,1,i), active_sorb(1))
|
|
|
|
det_ref_active(i) = det_ref_active(i) + iand(psi_ref(1,2,i), active_sorb(2)) * 2_8**32_8
|
|
|
|
end do
|
2016-03-11 19:35:57 +01:00
|
|
|
|
2016-03-04 16:52:46 +01:00
|
|
|
cepa0_shortcut(0) = 1
|
|
|
|
cepa0_shortcut(1) = 1
|
|
|
|
det_cepa0_active(1) = iand(psi_non_ref(1,1,det_cepa0_idx(1)), active_sorb(1))
|
|
|
|
det_cepa0_active(1) = det_cepa0_active(1) + iand(psi_non_ref(1,2,det_cepa0_idx(1)), active_sorb(2)) * 2_8**32_8
|
|
|
|
|
|
|
|
do i=2,N_det_non_ref
|
|
|
|
det_cepa0_active(i) = iand(psi_non_ref(1,1,det_cepa0_idx(i)), active_sorb(1))
|
|
|
|
det_cepa0_active(i) = det_cepa0_active(i) + iand(psi_non_ref(1,2,det_cepa0_idx(i)), active_sorb(2)) * 2_8**32_8
|
|
|
|
|
|
|
|
if(.not. detEq(det_noactive(1,1,i), det_noactive(1,1,i-1), N_int)) then
|
|
|
|
cepa0_shortcut(0) += 1
|
|
|
|
cepa0_shortcut(cepa0_shortcut(0)) = i
|
|
|
|
end if
|
|
|
|
end do
|
2016-03-11 19:35:57 +01:00
|
|
|
!cepa0_shortcut(0) += 1
|
|
|
|
cepa0_shortcut(cepa0_shortcut(0)+1) = N_det_non_ref+1
|
2016-03-04 16:52:46 +01:00
|
|
|
|
|
|
|
END_PROVIDER
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BEGIN_PROVIDER [ double precision, delta_cas, (N_det_ref, N_det_ref, N_states) ]
|
|
|
|
use bitmasks
|
|
|
|
implicit none
|
|
|
|
integer :: i,j,k
|
2016-03-11 19:35:57 +01:00
|
|
|
double precision :: Hjk, Hki, Hij, mat(2,2)
|
2016-03-04 16:52:46 +01:00
|
|
|
integer i_state
|
|
|
|
|
2016-03-11 19:35:57 +01:00
|
|
|
provide lambda_mrcc
|
2016-03-04 16:52:46 +01:00
|
|
|
i_state = 1
|
|
|
|
do i=1,N_det_ref
|
|
|
|
do j=1,i
|
|
|
|
delta_cas(i,j,i_state) = 0d0
|
|
|
|
do k=1,N_det_non_ref
|
|
|
|
call i_h_j(psi_ref(1,1,j), psi_non_ref(1,1,k),N_int,Hjk)
|
2016-03-11 19:35:57 +01:00
|
|
|
call i_h_j(psi_non_ref(1,1,k),psi_ref(1,1,i), N_int,Hki)
|
2016-03-04 16:52:46 +01:00
|
|
|
delta_cas(i,j,i_state) += Hjk * Hki * lambda_mrcc(i_state, k)
|
|
|
|
end do
|
|
|
|
delta_cas(j,i,i_state) = delta_cas(i,j,i_state)
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
END_PROVIDER
|
|
|
|
|
|
|
|
logical function detEq(a,b,Nint)
|
|
|
|
use bitmasks
|
|
|
|
implicit none
|
|
|
|
integer, intent(in) :: Nint
|
|
|
|
integer(bit_kind), intent(in) :: a(Nint,2), b(Nint,2)
|
|
|
|
integer :: ni, i
|
|
|
|
|
|
|
|
detEq = .false.
|
|
|
|
do i=1,2
|
|
|
|
do ni=1,Nint
|
|
|
|
if(a(ni,i) /= b(ni,i)) return
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
detEq = .true.
|
|
|
|
end function
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-03-11 19:35:57 +01:00
|
|
|
|
|
|
|
BEGIN_PROVIDER [ double precision, delta_mrcepa0_ij, (N_det_ref,N_det_non_ref,N_states) ]
|
|
|
|
&BEGIN_PROVIDER [ double precision, delta_mrcepa0_ii, (N_det_ref,N_states) ]
|
2016-03-04 16:52:46 +01:00
|
|
|
use bitmasks
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
integer :: i_state, i, i_I, J, k, degree, degree2, m, l, deg, ni
|
|
|
|
integer :: p1,p2,h1,h2,s1,s2, p1_,p2_,h1_,h2_,s1_,s2_
|
|
|
|
logical :: ok
|
|
|
|
double precision :: phase_iI, phase_Ik, phase_Jl, phase_IJ, phase_al, diI, hIi, hJi, delta_JI, dkI(1), HkI, ci_inv(1), dia_hla(1)
|
|
|
|
double precision :: contrib
|
|
|
|
integer, dimension(0:2,2,2) :: exc_iI, exc_Ik, exc_IJ
|
2016-03-11 19:35:57 +01:00
|
|
|
integer(bit_kind) :: det_tmp(N_int, 2), made_hole, made_particle, myActive
|
2016-03-04 16:52:46 +01:00
|
|
|
integer, allocatable :: idx_sorted_bit(:)
|
|
|
|
integer, external :: get_index_in_psi_det_sorted_bit
|
|
|
|
logical, external :: is_in_wavefunction
|
|
|
|
|
|
|
|
integer :: II, blok
|
|
|
|
|
2016-03-11 19:35:57 +01:00
|
|
|
provide det_cepa0_active delta_cas lambda_mrcc
|
2016-03-04 16:52:46 +01:00
|
|
|
|
|
|
|
if(N_int /= 1) then
|
|
|
|
print *, "mrcepa0 experimental N_int==1"
|
|
|
|
stop
|
|
|
|
end if
|
|
|
|
|
|
|
|
i_state = 1
|
2016-03-11 19:35:57 +01:00
|
|
|
delta_mrcepa0_ii(:,:) = 0d0
|
|
|
|
delta_mrcepa0_ij(:,:,:) = 0d0
|
|
|
|
|
2016-03-04 16:52:46 +01:00
|
|
|
! do i=1,N_det_ref
|
2016-03-11 19:35:57 +01:00
|
|
|
! delta_ii(i,i_state) = delta_cas(i,i,i_state)
|
2016-03-04 16:52:46 +01:00
|
|
|
! end do
|
|
|
|
|
|
|
|
provide mo_bielec_integrals_in_map
|
|
|
|
allocate(idx_sorted_bit(N_det))
|
|
|
|
|
|
|
|
idx_sorted_bit(:) = -1
|
|
|
|
do i=1,N_det_non_ref
|
|
|
|
idx_sorted_bit(get_index_in_psi_det_sorted_bit(psi_non_ref(1,1,i), N_int)) = i
|
|
|
|
enddo
|
2016-03-11 19:35:57 +01:00
|
|
|
!- qsd $OMP PARALLEL DO schedule(dynamic,10) default(firstprivate) shared(delta_ij, delta_ii)
|
2016-03-04 16:52:46 +01:00
|
|
|
do blok=1,cepa0_shortcut(0)
|
|
|
|
do i=cepa0_shortcut(blok), cepa0_shortcut(blok+1)-1
|
|
|
|
do II=1,N_det_ref
|
|
|
|
|
2016-03-11 19:35:57 +01:00
|
|
|
made_hole = iand(det_ref_active(II), xor(det_cepa0_active(i), det_ref_active(II)))
|
|
|
|
made_particle = iand(det_cepa0_active(i), xor(det_cepa0_active(i), det_ref_active(II)))
|
|
|
|
call get_excitation_degree(psi_ref(1,1,II),psi_non_ref(1,1,det_cepa0_idx(i)),degree,N_int)
|
|
|
|
if (degree > 2 .or. popcnt(made_hole) * popcnt(made_particle) /= degree*2) cycle
|
2016-03-04 16:52:46 +01:00
|
|
|
|
|
|
|
do k=cepa0_shortcut(blok), cepa0_shortcut(blok+1)-1
|
2016-03-11 19:35:57 +01:00
|
|
|
if(iand(not(active_sorb(1)), xor(psi_non_ref(1,1,det_cepa0_idx(k)), psi_non_ref(1,1,det_cepa0_idx(i)))) /= 0) stop "STOOOP"
|
|
|
|
!do k=1,N_det_non_ref
|
|
|
|
if(iand(made_hole, det_cepa0_active(k)) /= 0) cycle
|
|
|
|
if(iand(made_particle, det_cepa0_active(k)) /= made_particle) cycle
|
|
|
|
myActive = xor(det_cepa0_active(k), made_hole)
|
|
|
|
myActive = xor(myActive, made_particle)
|
|
|
|
if(i==k .and. myActive /= det_ref_active(II)) stop "AAAA"
|
|
|
|
!if(i==k) print *, "i=k"
|
2016-03-04 16:52:46 +01:00
|
|
|
do J=1,N_det_ref
|
2016-03-11 19:35:57 +01:00
|
|
|
if(det_ref_active(J) /= myActive) cycle
|
2016-03-04 16:52:46 +01:00
|
|
|
|
2016-03-11 19:35:57 +01:00
|
|
|
!!!!!
|
|
|
|
call get_excitation_degree(psi_ref(1,1,J),psi_non_ref(1,1,det_cepa0_idx(k)),degree,N_int)
|
|
|
|
if(degree > 2) stop "BBBB"
|
|
|
|
!!!!!!!!!
|
|
|
|
! if(i/=k .and. popcnt(made_hole) /= popcnt(made_particle)) then
|
|
|
|
! print *, "=================", made_hole, made_particle
|
|
|
|
! call debug_det(psi_ref(1,1,II),N_int)
|
|
|
|
! call debug_det(psi_non_ref(1,1,det_cepa0_idx(i)),N_int)
|
|
|
|
! call debug_det(psi_ref(1,1,J),N_int)
|
|
|
|
! call debug_det(psi_non_ref(1,1,det_cepa0_idx(k)),N_int)
|
|
|
|
! print *, "================="
|
|
|
|
! end if
|
|
|
|
|
|
|
|
call i_h_j(psi_non_ref(1,1,det_cepa0_idx(k)),psi_ref(1,1,II),N_int,Hki)
|
|
|
|
|
|
|
|
contrib = Hki * lambda_mrcc(i_state, det_cepa0_idx(k)) * delta_cas(II,J,i_state)
|
|
|
|
delta_mrcepa0_ij(II, det_cepa0_idx(i), i_state) += contrib
|
|
|
|
!
|
|
|
|
if(dabs(psi_ref_coef(II,i_state)).ge.5.d-5) then
|
|
|
|
!-$OMP CRITICAL
|
|
|
|
delta_mrcepa0_ii(II,i_state) -= contrib / psi_ref_coef(II, i_state) * psi_non_ref_coef(det_cepa0_idx(k),i_state)
|
|
|
|
!-$OMP END CRITICAL
|
|
|
|
endif
|
2016-03-04 16:52:46 +01:00
|
|
|
end do
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
end do
|
2016-03-11 19:35:57 +01:00
|
|
|
!- qs $OMP END PARALLEL DO
|
|
|
|
!print *, "MMMMMMMMMM ", delta_cas(2,2,i_state) , delta_ii(2,i_state)
|
|
|
|
! do i=1,N_det_ref
|
|
|
|
! delta_cas(i,i,i_state) += delta_ii(i,i_state)
|
|
|
|
! end do
|
|
|
|
|
2016-03-04 16:52:46 +01:00
|
|
|
deallocate(idx_sorted_bit)
|
|
|
|
END_PROVIDER
|
|
|
|
|
|
|
|
|
2016-03-11 19:35:57 +01:00
|
|
|
|
|
|
|
|
|
|
|
BEGIN_PROVIDER [ double precision, delta_sub_ij, (N_det_ref,N_det_non_ref,N_states) ]
|
|
|
|
&BEGIN_PROVIDER [ double precision, delta_sub_ii, (N_det_ref, N_states) ]
|
2016-03-04 16:52:46 +01:00
|
|
|
use bitmasks
|
|
|
|
implicit none
|
|
|
|
|
2016-03-11 19:35:57 +01:00
|
|
|
integer :: i_state, i, i_I, J, k, degree, degree2, m, l, deg, ni
|
|
|
|
integer :: p1,p2,h1,h2,s1,s2, p1_,p2_,h1_,h2_,s1_,s2_
|
|
|
|
logical :: ok
|
|
|
|
double precision :: phase_Ji, phase_Ik, phase_Ii
|
|
|
|
double precision :: contrib, delta_IJk, HJk, HIk, HIl
|
|
|
|
integer, dimension(0:2,2,2) :: exc_Ik, exc_Ji, exc_Ii
|
|
|
|
integer(bit_kind) :: det_tmp(N_int, 2), det_tmp2(N_int, 2)
|
|
|
|
integer, allocatable :: idx_sorted_bit(:)
|
|
|
|
integer, external :: get_index_in_psi_det_sorted_bit
|
|
|
|
|
|
|
|
integer :: II, blok
|
|
|
|
|
|
|
|
provide det_cepa0_active delta_cas lambda_mrcc
|
|
|
|
|
|
|
|
if(N_int /= 1) then
|
|
|
|
print *, "mrsc2 experimental N_int==1"
|
|
|
|
stop
|
|
|
|
end if
|
|
|
|
|
|
|
|
i_state = 1
|
|
|
|
delta_sub_ij(:,:,:) = 0d0
|
|
|
|
delta_sub_ii(:,:) = 0d0
|
|
|
|
|
|
|
|
provide mo_bielec_integrals_in_map
|
|
|
|
allocate(idx_sorted_bit(N_det))
|
|
|
|
|
|
|
|
idx_sorted_bit(:) = -1
|
|
|
|
do i=1,N_det_non_ref
|
|
|
|
idx_sorted_bit(get_index_in_psi_det_sorted_bit(psi_non_ref(1,1,i), N_int)) = i
|
|
|
|
enddo
|
|
|
|
|
|
|
|
!$OMP PARALLEL DO schedule(dynamic,10) default(firstprivate) shared(delta_sub_ij, delta_sub_ii)
|
|
|
|
do i=1,N_det_non_ref
|
|
|
|
if(mod(i,1000) == 0) print "(A,I3,A)", "♫ sloubi", i/1000, " ♪"
|
|
|
|
do J=1,N_det_ref
|
|
|
|
call get_excitation(psi_ref(1,1,J),psi_non_ref(1,1,i),exc_Ji,degree,phase_Ji,N_int)
|
|
|
|
if(degree == -1) cycle
|
|
|
|
|
|
|
|
|
|
|
|
do II=1,N_det_ref
|
|
|
|
call apply_excitation(psi_ref(1,1,II),exc_Ji,det_tmp,ok,N_int)
|
|
|
|
!call get_excitation(psi_ref(1,1,II),psi_non_ref(1,1,i),exc_Ii,degree,phase_Ii,N_int)
|
|
|
|
|
|
|
|
if(.not. ok) cycle
|
|
|
|
l = get_index_in_psi_det_sorted_bit(det_tmp, N_int)
|
|
|
|
if(l == 0) cycle
|
|
|
|
l = idx_sorted_bit(l)
|
|
|
|
|
|
|
|
if(psi_non_ref(1,1,l) /= det_tmp(1,1)) stop "sdf"
|
|
|
|
call i_h_j(psi_ref(1,1,II), det_tmp, N_int, HIl)
|
|
|
|
|
|
|
|
do k=1,N_det_non_ref
|
|
|
|
call get_excitation(psi_ref(1,1,II),psi_non_ref(1,1,k),exc_Ik,degree2,phase_Ik,N_int)
|
|
|
|
|
|
|
|
det_tmp(:,:) = 0_bit_kind
|
|
|
|
det_tmp2(:,:) = 0_bit_kind
|
|
|
|
|
|
|
|
det_tmp(1,1) = iand(xor(HF_bitmask(1,1), psi_non_ref(1,1,k)), not(active_sorb(1)))
|
|
|
|
det_tmp(1,2) = iand(xor(HF_bitmask(1,1), psi_non_ref(1,1,i)), not(active_sorb(1)))
|
|
|
|
ok = (popcnt(det_tmp(1,1)) + popcnt(det_tmp(1,2)) == popcnt(xor(det_tmp(1,1), det_tmp(1,2))))
|
|
|
|
|
|
|
|
det_tmp(1,1) = iand(xor(HF_bitmask(1,2), psi_non_ref(1,2,k)), not(active_sorb(2)))
|
|
|
|
det_tmp(1,2) = iand(xor(HF_bitmask(1,2), psi_non_ref(1,2,i)), not(active_sorb(2)))
|
|
|
|
ok = ok .and. (popcnt(det_tmp(1,1)) + popcnt(det_tmp(1,2)) == popcnt(xor(det_tmp(1,1), det_tmp(1,2))))
|
|
|
|
|
|
|
|
if(ok) cycle
|
|
|
|
|
|
|
|
|
|
|
|
! call decode_exc(exc_Ii,degree,h1_,p1_,h2_,p2_,s1_,s2_)
|
|
|
|
! call decode_exc(exc_Ik,degree2,h1,p1,h2,p2,s1,s2)
|
|
|
|
!
|
|
|
|
!
|
|
|
|
! det_tmp(:,:) = 0_bit_kind
|
|
|
|
! call set_det_bit(det_tmp, p1, s1)
|
|
|
|
! call set_det_bit(det_tmp, h1, s1)
|
|
|
|
! call set_det_bit(det_tmp, p1_, s1_)
|
|
|
|
! call set_det_bit(det_tmp, h1_, s1_)
|
|
|
|
! if(degree == 2) then
|
|
|
|
! call set_det_bit(det_tmp, p2_, s2_)
|
|
|
|
! call set_det_bit(det_tmp, h2_, s2_)
|
|
|
|
! end if
|
|
|
|
! if(degree2 == 2) then
|
|
|
|
! call set_det_bit(det_tmp, p2, s2)
|
|
|
|
! call set_det_bit(det_tmp, h2, s2)
|
|
|
|
! end if
|
|
|
|
! deg = 0
|
|
|
|
! do ni = 1, N_int
|
|
|
|
! deg += popcnt(det_tmp(ni,1)) + popcnt(det_tmp(ni,2))
|
|
|
|
! end do
|
|
|
|
! if(deg == 2*degree2 + 2*degree) cycle
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
! if(degree == -1) cycle
|
|
|
|
call i_h_j(psi_ref(1,1,J), psi_non_ref(1,1,k), N_int, HJk)
|
|
|
|
call i_h_j(psi_ref(1,1,II), psi_non_ref(1,1,k), N_int, HIk)
|
|
|
|
if(HJk == 0) cycle
|
|
|
|
!assert HIk == 0
|
|
|
|
delta_IJk = HJk * HIk * lambda_mrcc(i_state, k)
|
|
|
|
call apply_excitation(psi_non_ref(1,1,i),exc_Ik,det_tmp,ok,N_int)
|
|
|
|
if(ok) cycle
|
|
|
|
contrib = delta_IJk * HIl * lambda_mrcc(i_state, l)
|
|
|
|
!$OMP CRITICAL
|
|
|
|
delta_sub_ij(II, i, i_state) += contrib
|
|
|
|
if(dabs(psi_ref_coef(II,i_state)).ge.5.d-5) then
|
|
|
|
delta_sub_ii(II,i_state) -= contrib / psi_ref_coef(II, i_state) * psi_non_ref_coef(l,i_state)
|
|
|
|
endif
|
|
|
|
!$OMP END CRITICAL
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
!$OMP END PARALLEL DO
|
|
|
|
deallocate(idx_sorted_bit)
|
|
|
|
END_PROVIDER
|
|
|
|
|
|
|
|
|
|
|
|
subroutine set_det_bit(det, p, s)
|
|
|
|
implicit none
|
|
|
|
integer(bit_kind),intent(inout) :: det(N_int, 2)
|
|
|
|
integer, intent(in) :: p, s
|
|
|
|
integer :: ni, pos
|
|
|
|
|
|
|
|
ni = (p-1)/bit_kind_size + 1
|
|
|
|
pos = mod(p-1, bit_kind_size)
|
|
|
|
det(ni,s) = ibset(det(ni,s), pos)
|
2016-03-04 16:52:46 +01:00
|
|
|
end subroutine
|
2016-03-11 19:35:57 +01:00
|
|
|
|
|
|
|
|
|
|
|
BEGIN_PROVIDER [ double precision, delta_ij_old, (N_det_ref,N_det_non_ref,N_states) ]
|
|
|
|
&BEGIN_PROVIDER [ double precision, delta_ii_old, (N_det_ref,N_states) ]
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
integer :: i_state, i, i_I, J, k, degree, degree2, m, l, deg, ni
|
|
|
|
integer :: p1,p2,h1,h2,s1,s2, p1_,p2_,h1_,h2_,s1_,s2_, x(2), y(2)
|
|
|
|
logical :: ok
|
|
|
|
double precision :: phase_iI, phase_Ik, phase_Jl, phase_IJ, phase_al, diI, hIi, hJi, delta_JI, dkI(1), HkI, ci_inv(1), dia_hla(1)
|
|
|
|
double precision :: contrib
|
|
|
|
integer, dimension(0:2,2,2) :: exc_iI, exc_Ik, exc_IJ
|
|
|
|
integer(bit_kind) :: det_tmp(N_int, 2), det_tmp2(N_int, 2)
|
|
|
|
integer, allocatable :: idx_sorted_bit(:)
|
|
|
|
integer, external :: get_index_in_psi_det_sorted_bit
|
|
|
|
logical, external :: is_in_wavefunction
|
|
|
|
|
|
|
|
delta_ii_old(:,:) = 0
|
|
|
|
delta_ij_old(:,:,:) = 0
|
|
|
|
|
|
|
|
i_state = 1
|
|
|
|
provide mo_bielec_integrals_in_map
|
|
|
|
allocate(idx_sorted_bit(N_det))
|
|
|
|
|
|
|
|
idx_sorted_bit(:) = -1
|
|
|
|
do i=1,N_det_non_ref
|
|
|
|
idx_sorted_bit(get_index_in_psi_det_sorted_bit(psi_non_ref(1,1,i), N_int)) = i
|
|
|
|
enddo
|
2016-03-04 16:52:46 +01:00
|
|
|
|
2016-03-11 19:35:57 +01:00
|
|
|
!$OMP PARALLEL DO schedule(dynamic,10) default(firstprivate) shared(delta_ij_old, delta_ii_old)
|
|
|
|
do i = 1 , N_det_non_ref
|
|
|
|
if(mod(i,1000) == 0) print *, i, N_det_non_ref
|
|
|
|
do i_I = 1 , N_det_ref
|
|
|
|
call get_excitation(psi_ref(1,1,i_I),psi_non_ref(1,1,i),exc_iI,degree2,phase_iI,N_int)
|
|
|
|
if(degree2 == -1) cycle
|
|
|
|
ci_inv(i_state) = 1.d0 / psi_ref_coef(i_I,i_state)
|
|
|
|
|
|
|
|
call decode_exc(exc_iI,degree2,h1,p1,h2,p2,s1,s2)
|
|
|
|
|
|
|
|
call i_h_j(psi_non_ref(1,1,i), psi_ref(1,1,i_I),N_int,hIi)
|
|
|
|
diI = hIi * lambda_mrcc(i_state,i)
|
|
|
|
do J = 1 , N_det_ref !!!
|
|
|
|
call get_excitation(psi_ref(1,1,i_I),psi_ref(1,1,J),exc_IJ,degree,phase_IJ,N_int)
|
|
|
|
call i_h_j(psi_non_ref(1,1,i), psi_ref(1,1,J),N_int,hJi)
|
|
|
|
delta_JI = hJi * diI
|
|
|
|
do k = 1 , N_det_non_ref
|
|
|
|
call get_excitation(psi_ref(1,1,i_I),psi_non_ref(1,1,k),exc_Ik,degree,phase_Ik,N_int)
|
|
|
|
if(degree == -1) cycle
|
|
|
|
|
|
|
|
call decode_exc(exc_Ik,degree,h1_,p1_,h2_,p2_,s1_,s2_)
|
|
|
|
|
|
|
|
|
|
|
|
det_tmp(:,:) = 0_bit_kind
|
|
|
|
det_tmp2(:,:) = 0_bit_kind
|
|
|
|
|
|
|
|
!!!!!!!!!!!!!!!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
det_tmp(1,1) = iand(xor(HF_bitmask(1,1), psi_non_ref(1,1,k)), not(active_sorb(1)))
|
|
|
|
det_tmp(1,2) = iand(xor(HF_bitmask(1,1), psi_non_ref(1,1,i)), not(active_sorb(1)))
|
|
|
|
ok = (popcnt(det_tmp(1,1)) + popcnt(det_tmp(1,2)) == popcnt(xor(det_tmp(1,1), det_tmp(1,2))))
|
|
|
|
|
|
|
|
det_tmp(1,1) = iand(xor(HF_bitmask(1,2), psi_non_ref(1,2,k)), not(active_sorb(2)))
|
|
|
|
det_tmp(1,2) = iand(xor(HF_bitmask(1,2), psi_non_ref(1,2,i)), not(active_sorb(2)))
|
|
|
|
ok = ok .and. (popcnt(det_tmp(1,1)) + popcnt(det_tmp(1,2)) == popcnt(xor(det_tmp(1,1), det_tmp(1,2))))
|
|
|
|
if(.not. ok) cycle
|
|
|
|
!if(ok) cycle
|
|
|
|
|
|
|
|
!!!!!!!!!!!!!!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
! call set_det_bit(det_tmp, p1, s1)
|
|
|
|
!
|
|
|
|
! call set_det_bit(det_tmp, p1_, s1_)
|
|
|
|
!
|
|
|
|
! if(degree == 2) then
|
|
|
|
! call set_det_bit(det_tmp, p2_, s2_)
|
|
|
|
!
|
|
|
|
! end if
|
|
|
|
! if(degree2 == 2) then
|
|
|
|
! call set_det_bit(det_tmp, p2, s2)
|
|
|
|
! end if
|
|
|
|
!
|
|
|
|
! x(:) = 0
|
|
|
|
! do ni=1,N_int
|
|
|
|
! x(1) += popcnt(iand(det_tmp(ni, 1), cas_bitmask(ni, 1, 1)))
|
|
|
|
! x(2) += popcnt(iand(det_tmp(ni, 2), cas_bitmask(ni, 2, 1)))
|
|
|
|
! end do
|
|
|
|
!
|
|
|
|
!
|
|
|
|
! !det_tmp(:,:) = 0_bit_kind
|
|
|
|
!
|
|
|
|
! call set_det_bit(det_tmp, h1, s1)
|
|
|
|
! call set_det_bit(det_tmp, h1_, s1_)
|
|
|
|
! if(degree == 2) then
|
|
|
|
! call set_det_bit(det_tmp, h2_, s2_)
|
|
|
|
! end if
|
|
|
|
! if(degree2 == 2) then
|
|
|
|
! call set_det_bit(det_tmp, h2, s2)
|
|
|
|
! end if
|
|
|
|
!
|
|
|
|
! y(1) = -x(1)
|
|
|
|
! y(2) = -x(2)
|
|
|
|
! do ni=1,N_int
|
|
|
|
! y(1) += popcnt(iand(det_tmp(ni, 1), cas_bitmask(ni, 1, 1)))
|
|
|
|
! y(2) += popcnt(iand(det_tmp(ni, 2), cas_bitmask(ni, 2, 1)))
|
|
|
|
! end do
|
|
|
|
!
|
|
|
|
! ! print *, x, y
|
|
|
|
!
|
|
|
|
! if(x(1) * y(1) /= 0) cycle
|
|
|
|
! if(x(2) * y(2) /= 0) cycle
|
|
|
|
!
|
|
|
|
!
|
|
|
|
!
|
|
|
|
! deg = 0
|
|
|
|
! do ni = 1, N_int
|
|
|
|
! deg += popcnt(det_tmp(ni,1)) + popcnt(det_tmp(ni,2))
|
|
|
|
! end do
|
|
|
|
! if(deg /= 2*degree2 + 2*degree) cycle
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
call apply_excitation(psi_non_ref(1,1,i),exc_Ik,det_tmp,ok,N_int)
|
|
|
|
|
|
|
|
call get_excitation(psi_non_ref(1,1,i), det_tmp, exc_Ik, degree, phase_al, N_int)
|
|
|
|
|
|
|
|
|
|
|
|
if(.not. ok) cycle
|
|
|
|
if(is_in_wavefunction(det_tmp, N_int)) cycle
|
|
|
|
|
|
|
|
|
|
|
|
call apply_excitation(psi_ref(1,1,J),exc_Ik,det_tmp,ok,N_int)
|
|
|
|
if(.not. ok) cycle
|
|
|
|
|
|
|
|
call get_excitation(psi_ref(1,1,J), det_tmp, exc_Ik, degree, phase_Jl, N_int)
|
|
|
|
|
|
|
|
l = get_index_in_psi_det_sorted_bit(det_tmp, N_int)
|
|
|
|
if(l == 0) cycle
|
|
|
|
l = idx_sorted_bit(get_index_in_psi_det_sorted_bit(det_tmp, N_int))
|
|
|
|
|
|
|
|
if(l ==-1) cycle
|
|
|
|
|
|
|
|
|
|
|
|
call i_h_j(psi_non_ref(1,1,k), psi_ref(1,1,i_I),N_int,HkI)
|
|
|
|
dkI(i_state) = HkI * lambda_mrcc(i_state,k) * phase_Jl * phase_Ik
|
|
|
|
|
|
|
|
|
|
|
|
!$OMP CRITICAL
|
|
|
|
contrib = dkI(i_state) * delta_JI
|
|
|
|
!erro += abs(dkI(i_state) - psi_non_ref_coef(k,i_state) / psi_ref_coef(1,i_state))
|
|
|
|
delta_ij_old(i_I,l,i_state) += contrib
|
|
|
|
if(dabs(psi_ref_coef(i_I,i_state)).ge.5.d-5) then
|
|
|
|
delta_ii_old(i_I,i_state) -= contrib * ci_inv(i_state) * psi_non_ref_coef(k,i_state)
|
|
|
|
endif
|
|
|
|
!$OMP END CRITICAL
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
!$OMP END PARALLEL DO
|
|
|
|
deallocate(idx_sorted_bit)
|
|
|
|
END_PROVIDER
|
|
|
|
|
2016-03-04 16:52:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
subroutine apply_excitation(det, exc, res, ok, Nint)
|
|
|
|
use bitmasks
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
integer, intent(in) :: Nint
|
|
|
|
integer, intent(in) :: exc(0:2,2,2)
|
|
|
|
integer(bit_kind),intent(in) :: det(Nint, 2)
|
|
|
|
integer(bit_kind),intent(out) :: res(Nint, 2)
|
|
|
|
logical, intent(out) :: ok
|
|
|
|
integer :: h1,p1,h2,p2,s1,s2,degree
|
|
|
|
integer :: ii, pos
|
|
|
|
|
|
|
|
|
|
|
|
ok = .false.
|
|
|
|
degree = exc(0,1,1) + exc(0,1,2)
|
|
|
|
if(.not. (degree > 0 .and. degree <= 2)) then
|
|
|
|
print *, "apply ex"
|
|
|
|
STOP
|
|
|
|
endif
|
|
|
|
|
|
|
|
call decode_exc(exc,degree,h1,p1,h2,p2,s1,s2)
|
|
|
|
res = det
|
|
|
|
|
|
|
|
ii = (h1-1)/bit_kind_size + 1
|
|
|
|
pos = mod(h1-1, 64)!iand(h1-1,bit_kind_size-1) ! mod 64
|
|
|
|
if(iand(det(ii, s1), ishft(1_bit_kind, pos)) == 0_8) return
|
|
|
|
res(ii, s1) = ibclr(res(ii, s1), pos)
|
|
|
|
|
|
|
|
ii = (p1-1)/bit_kind_size + 1
|
|
|
|
pos = mod(p1-1, 64)!iand(p1-1,bit_kind_size-1)
|
|
|
|
if(iand(det(ii, s1), ishft(1_bit_kind, pos)) /= 0_8) return
|
|
|
|
res(ii, s1) = ibset(res(ii, s1), pos)
|
|
|
|
|
|
|
|
if(degree == 2) then
|
|
|
|
ii = (h2-1)/bit_kind_size + 1
|
|
|
|
pos = mod(h2-1, 64)!iand(h2-1,bit_kind_size-1)
|
|
|
|
if(iand(det(ii, s2), ishft(1_bit_kind, pos)) == 0_8) return
|
|
|
|
res(ii, s2) = ibclr(res(ii, s2), pos)
|
|
|
|
|
|
|
|
ii = (p2-1)/bit_kind_size + 1
|
|
|
|
pos = mod(p2-1, 64)!iand(p2-1,bit_kind_size-1)
|
|
|
|
if(iand(det(ii, s2), ishft(1_bit_kind, pos)) /= 0_8) return
|
|
|
|
res(ii, s2) = ibset(res(ii, s2), pos)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ok = .true.
|
|
|
|
end subroutine
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|