9
1
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-23 04:52:05 +02:00
qp2/src/tools/write_integrals_erf.irp.f

22 lines
422 B
Fortran
Raw Normal View History

2019-01-25 11:39:31 +01:00
program write_integrals_erf
implicit none
BEGIN_DOC
2019-01-29 15:40:00 +01:00
! Saves the two-electron integrals with the $erf(\mu r_{12})/r_{12}$
! oprerator into the EZFIO directory.
2019-01-25 11:39:31 +01:00
END_DOC
io_mo_two_e_integrals = 'None'
touch io_mo_two_e_integrals
io_ao_two_e_integrals = 'None'
touch io_ao_two_e_integrals
call routine
end
subroutine routine
implicit none
call save_erf_two_e_integrals_ao
call save_erf_two_e_integrals_mo
end