mirror of
https://gitlab.com/scemama/eplf
synced 2024-12-22 04:14:17 +01:00
Minor bugs
This commit is contained in:
parent
32af225063
commit
711c7ce5e3
@ -1 +1 @@
|
|||||||
EZFIO.1.0.19.tar.gz
|
EZFIO.1.0.20.tar.gz
|
@ -217,7 +217,7 @@ BEGIN_PROVIDER [ integer, two_e_density_num_max ]
|
|||||||
integer :: exc(3), nact, p
|
integer :: exc(3), nact, p
|
||||||
integer :: det_exc
|
integer :: det_exc
|
||||||
do k=1,det_num
|
do k=1,det_num
|
||||||
if (abs(det_coef(k) < 1.e-5)) then
|
if (abs(det_coef(k)) < 1.e-5) then
|
||||||
cycle
|
cycle
|
||||||
endif
|
endif
|
||||||
do l=k,det_num
|
do l=k,det_num
|
||||||
|
@ -80,8 +80,9 @@ BEGIN_PROVIDER [ double precision, mo_eplf_integral_matrix, (mo_num,mo_num) ]
|
|||||||
! enddo
|
! enddo
|
||||||
!enddo
|
!enddo
|
||||||
|
|
||||||
moki = mo_num - mod(mo_num,4)
|
integer :: momax
|
||||||
do j=1,moki,4
|
momax = mo_num - mod(mo_num,4)
|
||||||
|
do j=1,momax,4
|
||||||
do i=1,j-1
|
do i=1,j-1
|
||||||
mo_eplf_integral_matrix(i,j ) = mo_eplf_integral_matrix(j ,i)
|
mo_eplf_integral_matrix(i,j ) = mo_eplf_integral_matrix(j ,i)
|
||||||
mo_eplf_integral_matrix(i,j+1) = mo_eplf_integral_matrix(j+1,i)
|
mo_eplf_integral_matrix(i,j+1) = mo_eplf_integral_matrix(j+1,i)
|
||||||
@ -96,7 +97,7 @@ BEGIN_PROVIDER [ double precision, mo_eplf_integral_matrix, (mo_num,mo_num) ]
|
|||||||
mo_eplf_integral_matrix(j+2,j+3) = mo_eplf_integral_matrix(j+3,j+2)
|
mo_eplf_integral_matrix(j+2,j+3) = mo_eplf_integral_matrix(j+3,j+2)
|
||||||
enddo
|
enddo
|
||||||
|
|
||||||
do j=moki+1,mo_num
|
do j=momax+1,mo_num
|
||||||
do i=1,j-1
|
do i=1,j-1
|
||||||
mo_eplf_integral_matrix(i,j) = mo_eplf_integral_matrix(j,i)
|
mo_eplf_integral_matrix(i,j) = mo_eplf_integral_matrix(j,i)
|
||||||
enddo
|
enddo
|
||||||
|
Loading…
Reference in New Issue
Block a user