10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-19 19:52:06 +02:00
QCaml/HartreeFock/HartreeFock_type.mli

13 lines
403 B
OCaml
Raw Normal View History

2018-03-03 22:29:08 +01:00
(** Data structure representing the output of a Hartree-Fock caculation *)
2018-02-23 18:44:31 +01:00
type t =
{
2018-03-03 22:29:08 +01:00
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 *)
2018-02-23 18:44:31 +01:00
}