2018-06-13 19:03:42 +02:00
|
|
|
(** Signature for matrices built on the {!Basis.t} *)
|
|
|
|
|
2020-09-26 12:02:53 +02:00
|
|
|
open Qcaml_gaussian_basis
|
|
|
|
open Qcaml_linear_algebra
|
2018-06-13 19:03:42 +02:00
|
|
|
|
2020-09-26 12:02:53 +02:00
|
|
|
type t = Matrix.t
|
2018-06-13 19:03:42 +02:00
|
|
|
|
|
|
|
val of_basis : Basis.t -> t
|
|
|
|
(** Build from a {!Basis.t}. *)
|
|
|
|
|
2019-03-04 19:01:54 +01:00
|
|
|
val of_basis_pair : Basis.t -> Basis.t -> t
|
|
|
|
(** Build from a pair of {!Basis.t}. *)
|
|
|
|
|
2018-06-13 19:03:42 +02:00
|
|
|
val to_file : filename:string -> t -> unit
|
|
|
|
(** Write the integrals in a file. *)
|
|
|
|
|
2020-09-26 12:02:53 +02:00
|
|
|
val matrix : t -> Matrix.t
|
2018-07-20 16:09:06 +02:00
|
|
|
(** Returns the matrix suitable for Lacaml. *)
|
|
|
|
|
2020-09-26 12:02:53 +02:00
|
|
|
val of_matrix : Matrix.t -> t
|
2018-07-20 16:09:06 +02:00
|
|
|
(** Build from a Lacaml matrix. *)
|