10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-28 08:02:20 +02:00
quantum_package/src/AOs/tests/test_overlap.irp.f

13 lines
310 B
Forth

program test_normalization
implicit none
integer :: i,j
character*(64), parameter :: f = '(i3.3,a,i3.3,a3,F12.8)'
do j=1,ao_num
do i=1,ao_num
if (abs(ao_overlap(i,j)) > 1.d-6) then
print f, i,'_',j, ' : ', ao_overlap(i,j)
endif
enddo
enddo
end