10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-30 00:44:18 +02:00
QCaml/SCF/Guess.mli

14 lines
203 B
OCaml
Raw Normal View History

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