mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-03 20:53:54 +01:00
added check_sym
This commit is contained in:
parent
0b3c2804a2
commit
4fd5c4b75b
@ -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:'
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user