10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-10-14 20:11:44 +02:00
QCaml/gaussian_integrals/lib/matrix_on_basis.mli
2020-09-26 12:02:53 +02:00

22 lines
496 B
OCaml

(** Signature for matrices built on the {!Basis.t} *)
open Qcaml_gaussian_basis
open Qcaml_linear_algebra
type t = Matrix.t
val of_basis : Basis.t -> t
(** Build from a {!Basis.t}. *)
val of_basis_pair : Basis.t -> Basis.t -> t
(** Build from a pair of {!Basis.t}. *)
val to_file : filename:string -> t -> unit
(** Write the integrals in a file. *)
val matrix : t -> Matrix.t
(** Returns the matrix suitable for Lacaml. *)
val of_matrix : Matrix.t -> t
(** Build from a Lacaml matrix. *)