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

15 lines
290 B
Fortran
Raw Normal View History

2019-01-25 11:39:31 +01:00
! Generates subroutine H_apply_cis
! --------------------------------
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("cis",do_double_exc=False)
2020-03-17 16:39:43 +01:00
print(H)
2019-04-26 17:32:52 +02:00
H = H_apply("cis_sym",do_double_exc=False)
H.filter_only_connected_to_hf()
2020-03-17 16:39:43 +01:00
print(H)
2019-04-26 17:32:52 +02:00
2019-01-25 11:39:31 +01:00
END_SHELL