10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-25 22:52:15 +02:00

More applications of H in fci_zmq

This commit is contained in:
Anthony Scemama 2016-12-12 14:22:24 +01:00
parent ee29506352
commit 8348862975
2 changed files with 4 additions and 4 deletions

View File

@ -68,8 +68,8 @@ program fci_zmq
call ezfio_set_cas_sd_zmq_energy(CI_energy(1))
n_det_before = N_det
to_select = 3*N_det
to_select = max(256-to_select, to_select)
to_select = 2*N_det
to_select = max(64-to_select, to_select)
to_select = min(to_select,N_det_max-n_det_before)
call ZMQ_selection(to_select, pt2)

View File

@ -68,8 +68,8 @@ program fci_zmq
call ezfio_set_full_ci_zmq_energy(CI_energy(1))
n_det_before = N_det
to_select = 3*N_det
to_select = max(1024-to_select, to_select)
to_select = 2*N_det
to_select = max(64-to_select, to_select)
to_select = min(to_select, N_det_max-n_det_before)
call ZMQ_selection(to_select, pt2)