10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-10-19 06:21:47 +02:00
quantum_package/src/CID_SC2_selected/do_mono_double.irp.f

20 lines
452 B
Fortran

BEGIN_PROVIDER [logical, do_double_excitations]
implicit none
BEGIN_DOC
! if True then the double excitations are performed in the calculation
! always true in the CISD
END_DOC
do_double_excitations = .True.
END_PROVIDER
BEGIN_PROVIDER [logical, do_mono_excitations]
implicit none
BEGIN_DOC
! if True then the mono excitations are performed in the calculation
! always true in the CISD
END_DOC
do_mono_excitations = .False.
END_PROVIDER