mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-06 22:23:42 +01:00
13 lines
156 B
OCaml
13 lines
156 B
OCaml
(** Guess for Hartree-Fock calculations. *)
|
|
|
|
type guess =
|
|
| Hcore of Lacaml.D.Mat.t
|
|
|
|
type t = guess
|
|
|
|
|
|
val make : ?guess:[ `Hcore ] -> Simulation.t -> t
|
|
|
|
|
|
|