9
1
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-21 20:12:10 +02:00

added check_sym

This commit is contained in:
eginer 2019-04-26 17:32:52 +02:00
parent 0b3c2804a2
commit 4fd5c4b75b
2 changed files with 10 additions and 1 deletions

View File

@ -57,7 +57,11 @@ subroutine run
implicit none
integer :: i
call H_apply_cis
if(pseudo_sym)then
call H_apply_cis_sym
else
call H_apply_cis
endif
print *, 'N_det = ', N_det
print*,'******************************'
print *, 'Energies of the states:'

View File

@ -5,5 +5,10 @@ BEGIN_SHELL [ /usr/bin/env python2 ]
from generate_h_apply import H_apply
H = H_apply("cis",do_double_exc=False)
print H
H = H_apply("cis_sym",do_double_exc=False)
H.filter_only_connected_to_hf()
print H
END_SHELL