1
0
mirror of https://gitlab.com/scemama/qp_plugins_scemama.git synced 2024-06-02 03:15:25 +02:00
qp_plugins_scemama/devel/general_mrci/h_apply.irp.f

17 lines
285 B
Fortran

! Generates subroutine H_apply_cisd
! ----------------------------------
BEGIN_SHELL [ /usr/bin/env python3 ]
from generate_h_apply import H_apply
H = H_apply("cisd")
print(H)
H = H_apply("cis",do_double_exc=False)
print(H)
H = H_apply("cid",do_mono_exc=False)
print(H)
END_SHELL