10
0
mirror of https://gitlab.com/scemama/eplf synced 2024-06-19 03:36:36 +02:00
eplf/debug.irp.f

11 lines
167 B
FortranFixed
Raw Normal View History

program debug
2009-05-12 00:02:55 +02:00
implicit none
double precision :: ao_overlap
2009-05-12 00:02:55 +02:00
integer :: i,j
do i=1,ao_num
do j=1,ao_num
print *, i,j, ao_overlap_matrix(i,j)
enddo
enddo
end