mirror of
https://github.com/QuantumPackage/qp2.git
synced 2025-01-03 00:55:38 +01:00
Fixed ProgressBar
This commit is contained in:
parent
0f1f5a8cdd
commit
5576bb6ccd
37
ocaml/.gitignore
vendored
37
ocaml/.gitignore
vendored
@ -4,7 +4,42 @@ element_create_db.byte
|
|||||||
ezfio.ml
|
ezfio.ml
|
||||||
.gitignore
|
.gitignore
|
||||||
Git.ml
|
Git.ml
|
||||||
Input_*.ml
|
Input_ao_one_e_ints.ml
|
||||||
|
Input_ao_two_e_erf_ints.ml
|
||||||
|
Input_ao_two_e_ints.ml
|
||||||
|
Input_auto_generated.ml
|
||||||
|
Input_becke_numerical_grid.ml
|
||||||
|
Input_cassd.ml
|
||||||
|
Input_champ.ml
|
||||||
|
Input_cipsi.ml
|
||||||
|
Input_cipsi_tc_bi_ortho.ml
|
||||||
|
Input_cosgtos_ao_int.ml
|
||||||
|
Input_davidson_keywords.ml
|
||||||
|
Input_davidson.ml
|
||||||
|
Input_density_for_dft.ml
|
||||||
|
Input_determinants.ml
|
||||||
|
Input_dft_keywords.ml
|
||||||
|
Input_dressing.ml
|
||||||
|
Input_fci_tc_bi.ml
|
||||||
|
Input_general_mrci.ml
|
||||||
|
Input_mo_localization.ml
|
||||||
|
Input_mo_one_e_ints.ml
|
||||||
|
Input_mo_two_e_erf_ints.ml
|
||||||
|
Input_mo_two_e_ints.ml
|
||||||
|
Input_mpn.ml
|
||||||
|
Input_mu_of_r.ml
|
||||||
|
Input_nuclei.ml
|
||||||
|
Input_perturbation.ml
|
||||||
|
Input_pseudo.ml
|
||||||
|
Input_qmcchem.ml
|
||||||
|
Input_scf_utils.ml
|
||||||
|
Input_some_mu_of_r.ml
|
||||||
|
Input_tc_keywords.ml
|
||||||
|
Input_three_body_ints.ml
|
||||||
|
Input_trust_region.ml
|
||||||
|
Input_two_body_rdm.ml
|
||||||
|
Input_utils.ml
|
||||||
|
Input_utils_trust_region.ml
|
||||||
qp_create_ezfio
|
qp_create_ezfio
|
||||||
qp_create_ezfio.native
|
qp_create_ezfio.native
|
||||||
qp_edit
|
qp_edit
|
||||||
|
@ -10,7 +10,7 @@ type t =
|
|||||||
next : float;
|
next : float;
|
||||||
}
|
}
|
||||||
|
|
||||||
let init ?(bar_length=20) ?(start_value=0.) ?(end_value=1.) ~title =
|
let init ?(bar_length=20) ?(start_value=0.) ?(end_value=1.) title =
|
||||||
{ title ; start_value ; end_value ; bar_length ; cur_value=start_value ;
|
{ title ; start_value ; end_value ; bar_length ; cur_value=start_value ;
|
||||||
init_time= Unix.time () ; dirty = false ; next = Unix.time () }
|
init_time= Unix.time () ; dirty = false ; next = Unix.time () }
|
||||||
|
|
||||||
|
@ -155,7 +155,7 @@ let new_job msg program_state rep_socket pair_socket =
|
|||||||
~start_value:0.
|
~start_value:0.
|
||||||
~end_value:1.
|
~end_value:1.
|
||||||
~bar_length:20
|
~bar_length:20
|
||||||
~title:(Message.State.to_string state)
|
(Message.State.to_string state)
|
||||||
in
|
in
|
||||||
|
|
||||||
let result =
|
let result =
|
||||||
|
@ -78,7 +78,7 @@ default: True
|
|||||||
|
|
||||||
[symetric_fock_tc]
|
[symetric_fock_tc]
|
||||||
type: logical
|
type: logical
|
||||||
doc: If |true|, using F+F^\dagger as Fock TC
|
doc: If |true|, using F+F^t as Fock TC
|
||||||
interface: ezfio,provider,ocaml
|
interface: ezfio,provider,ocaml
|
||||||
default: False
|
default: False
|
||||||
|
|
||||||
|
@ -1 +0,0 @@
|
|||||||
../../include/f77_zmq_free.h
|
|
@ -1,4 +1,4 @@
|
|||||||
module f77_zmq
|
module f77_zmq
|
||||||
include 'f77_zmq_free.h'
|
#include "f77_zmq_free.h"
|
||||||
end module
|
end module
|
||||||
|
|
Loading…
Reference in New Issue
Block a user