10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-07-13 06:34:39 +02:00
quantum_package/src/MonoInts/tests/ao_pot.irp.f

13 lines
253 B
FortranFixed
Raw Normal View History

2014-04-16 22:16:32 +02:00
program test ao_pot
implicit none
integer :: i, j
do i=1,ao_num
do j=1,i
if (abs(ao_nucl_elec_integral(i,j)) > 1.d-9) then
print '(I4,A,I4,2x,A, 2x,e16.8)' , i,',',j, ' : ', ao_nucl_elec_integral(i,j)
endif
enddo
enddo
end