mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-12 17:13:54 +01:00
Added tests for AOs
This commit is contained in:
parent
bc5340a751
commit
4a3e16a5ae
12
src/AOs/tests/test_overlap.irp.f
Normal file
12
src/AOs/tests/test_overlap.irp.f
Normal file
@ -0,0 +1,12 @@
|
||||
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
|
93656
src/AOs/tests/test_overlap.ref
Normal file
93656
src/AOs/tests/test_overlap.ref
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user