mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-07 22:53:57 +01:00
21 lines
584 B
Fortran
21 lines
584 B
Fortran
BEGIN_PROVIDER [ double precision, H_matrix_all_dets,(N_det,N_det) ]
|
|
implicit none
|
|
BEGIN_DOC
|
|
! H matrix on the basis of the slater determinants defined by psi_det
|
|
END_DOC
|
|
integer :: i,j
|
|
double precision :: hij
|
|
call i_H_j(psi_det(1,1,1),psi_det(1,1,1),N_int,hij)
|
|
!$OMP PARALLEL DO SCHEDULE(GUIDED) PRIVATE(i,j,hij) &
|
|
!$OMP SHARED (N_det, psi_det, N_int,H_matrix_all_dets)
|
|
do i =1,N_det
|
|
do j =i,N_det
|
|
call i_H_j(psi_det(1,1,i),psi_det(1,1,j),N_int,hij)
|
|
H_matrix_all_dets(i,j) = hij
|
|
H_matrix_all_dets(j,i) = hij
|
|
enddo
|
|
enddo
|
|
!$OMP END PARALLEL DO
|
|
END_PROVIDER
|
|
|