9
1
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-02 02:35:18 +02:00
qp2/src/cisd/h_apply.irp.f

14 lines
292 B
Fortran
Raw Permalink Normal View History

2019-01-25 11:39:31 +01:00
! Generates subroutine H_apply_cisd
! ----------------------------------
2020-03-17 16:39:43 +01:00
BEGIN_SHELL [ /usr/bin/env python3 ]
2019-01-25 11:39:31 +01:00
from generate_h_apply import H_apply
H = H_apply("cisd",do_double_exc=True)
2020-03-17 16:39:43 +01:00
print(H)
2019-04-26 17:31:15 +02:00
H = H_apply("cisd_sym",do_double_exc=True)
H.filter_only_connected_to_hf()
2020-03-17 16:39:43 +01:00
print(H)
2019-01-25 11:39:31 +01:00
END_SHELL