10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-21 20:52:07 +02:00
QCaml/HartreeFock/HartreeFock_type.mli
2018-03-03 22:29:08 +01:00

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 *)
}