10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-01 19:05:25 +02:00

Solved problem with lowercases

This commit is contained in:
Anthony Scemama 2015-04-07 10:25:39 +02:00
parent 9b2324ae51
commit dcd9310033
4 changed files with 15 additions and 24 deletions

View File

@ -4,6 +4,6 @@ determinants
n_det_max_jacobi 1000 n_det_max_jacobi 1000
threshold_generators 0.99 threshold_generators 0.99
threshold_selectors 0.999 threshold_selectors 0.999
read_wf False read_wf false
s2_eig False s2_eig false
only_single_double_dm False only_single_double_dm false

View File

@ -2,24 +2,14 @@ cis_dressed
n_state_cis 10 n_state_cis 10
n_core_cis 0 n_core_cis 0
n_act_cis mo_basis_mo_tot_num n_act_cis mo_basis_mo_tot_num
mp2_dressing False mp2_dressing false
standard_doubles True standard_doubles True
en_2_2 False en_2_2 false
determinants
n_states 1
n_states_diag determinants_n_states
n_det_max_jacobi 1000
threshold_generators 0.99
threshold_selectors 0.999
read_wf False
s2_eig False
only_single_double_dm False
all_singles all_singles
n_det_max_fci 50000 n_det_max_fci 50000
pt2_max 1.e-8 pt2_max 1.e-8
do_pt2_end False do_pt2_end false
cassd cassd
n_det_max_cassd 10000 n_det_max_cassd 10000

View File

@ -121,6 +121,8 @@ END_PROVIDER
v = buffer[1] v = buffer[1]
name = self.name name = self.name
try: try:
true = True
false = False
v_eval = eval(v) v_eval = eval(v)
if type(v_eval) == bool: if type(v_eval) == bool:
v = '.%s.'%(v) v = '.%s.'%(v)

View File

@ -12,7 +12,6 @@ subroutine run
print *, N_det_cas print *, N_det_cas
print *, N_det_sd print *, N_det_sd
! call update_generators
integer :: i integer :: i
print *, 'CAS' print *, 'CAS'
print *, '===' print *, '==='
@ -21,13 +20,13 @@ subroutine run
call debug_det(psi_cas(1,1,i),N_int) call debug_det(psi_cas(1,1,i),N_int)
enddo enddo
! print *, 'SD' print *, 'SD'
! print *, '==' print *, '=='
! do i=1,N_det_sd do i=1,N_det_sd
! print *, psi_sd_coefs(i,:) print *, psi_sd_coefs(i,:)
! call debug_det(psi_sd(1,1,i),N_int) call debug_det(psi_sd(1,1,i),N_int)
! enddo enddo
!
print *, 'MRCC' print *, 'MRCC'
print *, '====' print *, '===='
print *, ci_energy(:) print *, ci_energy(:)