2018-05-31 16:46:45 +02:00
|
|
|
(** Guess for Hartree-Fock calculations. *)
|
|
|
|
|
|
|
|
type guess =
|
|
|
|
| Hcore of Lacaml.D.Mat.t
|
|
|
|
| Huckel of Lacaml.D.Mat.t
|
|
|
|
|
|
|
|
type t = guess
|
|
|
|
|
|
|
|
|
2018-06-13 17:49:58 +02:00
|
|
|
val make : ?nocc:int -> guess:[ `Hcore | `Huckel ] -> AOBasis.t -> t
|
2018-05-31 16:46:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
|