mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-07 14:03:37 +01:00
minor assert fixed
This commit is contained in:
parent
aa55f7de28
commit
b01b7d4d55
@ -170,7 +170,7 @@ double precision function overlap_gauss_r12_ao_with1s(B_center, beta, D_center,
|
||||
|
||||
double precision, external :: overlap_gauss_r12, overlap_gauss_r12_ao
|
||||
|
||||
ASSERT(beta .gt. 0.d0)
|
||||
ASSERT(beta .ge. 0.d0)
|
||||
if(beta .lt. 1d-10) then
|
||||
overlap_gauss_r12_ao_with1s = overlap_gauss_r12_ao(D_center, delta, i, j)
|
||||
return
|
||||
|
@ -47,10 +47,11 @@ BEGIN_PROVIDER [ double precision, j1b_pen, (nucl_num) ]
|
||||
|
||||
integer :: i
|
||||
do i = 1, nucl_num
|
||||
j1b_pen(i) = 1d5
|
||||
j1b_pen(i) = 1.d0
|
||||
enddo
|
||||
|
||||
endif
|
||||
print*,'j1b_pen = ',j1b_pen
|
||||
|
||||
END_PROVIDER
|
||||
|
||||
|
@ -4,4 +4,5 @@ program tc_keywords
|
||||
! TODO : Put the documentation of the program here
|
||||
END_DOC
|
||||
print *, 'Hello world'
|
||||
provide j1b_pen
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user