10
0
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-22 13:12:23 +02:00
QuantumPackage/src/cisd/h_apply.irp.f

14 lines
292 B
Fortran
Raw 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