10
0
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-07-03 09:56:04 +02:00

Merge branch 'develop' into develop_manu

This commit is contained in:
eginer 2019-01-30 18:38:08 +01:00
commit ecaa190f63
2 changed files with 5 additions and 7 deletions

View File

@ -6,21 +6,19 @@ default: True
[pt2_max] [pt2_max]
type: PT2_energy type: PT2_energy
doc: The selection process stops when the largest |PT2| (for all the state) is lower doc: The selection process stops when the largest |PT2| (for all the state) is lower than `pt2_max` in absolute value
than `pt2_max` in absolute value
interface: ezfio,provider,ocaml interface: ezfio,provider,ocaml
default: 0.0001 default: 0.0001
[pt2_relative_error] [pt2_relative_error]
type: Normalized_float type: Normalized_float
doc: Stop stochastic |PT2| when the relative error is smaller than `PT2_relative_error` doc: Stop stochastic |PT2| when the relative error is smaller than `pT2_relative_error`
interface: ezfio,provider,ocaml interface: ezfio,provider,ocaml
default: 0.002 default: 0.002
[correlation_energy_ratio_max] [correlation_energy_ratio_max]
type: Normalized_float type: Normalized_float
doc: The selection process stops at a fixed correlation ratio (useful for getting same accuracy between molecules). doc: The selection process stops at a fixed correlation ratio (useful for getting same accuracy between molecules). Defined as :math:`(E_{CI}-E_{HF})/(E_{CI}+E_{PT2} - E_{HF})`.
Defined as :math:`{E_{CI}-E_{HF}}/{E_{CI}+E_{PT2} - E_{HF}}`.
interface: ezfio,provider,ocaml interface: ezfio,provider,ocaml
default: 1.00 default: 1.00

View File

@ -246,7 +246,7 @@ IRP_ENDIF
! stop 'Unable to set ZMQ_RCVBUF on pull socket' ! stop 'Unable to set ZMQ_RCVBUF on pull socket'
! endif ! endif
rc = f77_zmq_setsockopt(new_zmq_pull_socket,ZMQ_RCVHWM,10,4) rc = f77_zmq_setsockopt(new_zmq_pull_socket,ZMQ_RCVHWM,8,4)
if (rc /= 0) then if (rc /= 0) then
stop 'Unable to set ZMQ_RCVHWM on pull socket' stop 'Unable to set ZMQ_RCVHWM on pull socket'
endif endif
@ -323,7 +323,7 @@ IRP_ENDIF
stop 'Unable to set ZMQ_LINGER on push socket' stop 'Unable to set ZMQ_LINGER on push socket'
endif endif
rc = f77_zmq_setsockopt(new_zmq_push_socket,ZMQ_SNDHWM,10,4) rc = f77_zmq_setsockopt(new_zmq_push_socket,ZMQ_SNDHWM,1,4)
if (rc /= 0) then if (rc /= 0) then
stop 'Unable to set ZMQ_SNDHWM on push socket' stop 'Unable to set ZMQ_SNDHWM on push socket'
endif endif