mirror of
https://gitlab.com/scemama/qp_plugins_scemama.git
synced 2024-11-07 22:53:42 +01:00
17 lines
285 B
Fortran
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
|
|
|