1
0
mirror of https://gitlab.com/scemama/qp_plugins_scemama.git synced 2024-07-26 04:37:31 +02:00
qp_plugins_scemama/devel/general_mrci/h_apply.irp.f

17 lines
285 B
FortranFixed
Raw Normal View History

2020-12-15 19:02:38 +01:00
! 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