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

16 lines
278 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
2018-07-05 00:39:17 +02:00
(** {2 Tests} *)
2018-07-04 20:24:51 +02:00
val test_case : AOBasis.t -> unit Alcotest.test_case list