mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-08 15:13:52 +01:00
13 lines
232 B
FortranFixed
13 lines
232 B
FortranFixed
|
program test ao_mono
|
||
|
implicit none
|
||
|
integer :: i, j
|
||
|
do i=1,ao_num
|
||
|
do j=1,i
|
||
|
if (abs(ao_overlap(i,j)) > 1.d-9) then
|
||
|
print '(I4,A,I4,2x,A, 2x,e16.8)' , i,',',j, ' : ', ao_overlap(i,j)
|
||
|
endif
|
||
|
enddo
|
||
|
enddo
|
||
|
end
|
||
|
|