mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-07 06:33:39 +01:00
13 lines
403 B
OCaml
13 lines
403 B
OCaml
(** Data structure representing the output of a Hartree-Fock caculation *)
|
|
|
|
type t =
|
|
{
|
|
guess : Guess.t; (** Initial guess *)
|
|
eigenvectors : Lacaml.D.Mat.t ; (** Final eigenvectors *)
|
|
eigenvalues : Lacaml.D.Vec.t ; (** Final eigenvalues *)
|
|
energy : float ; (** Final energy *)
|
|
iterations : float array; (** Energies of all iterations *)
|
|
}
|
|
|
|
|