10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-07-17 08:30:22 +02:00
QCaml/gaussian_integrals/lib/matrix_on_basis.mli

13 lines
273 B
OCaml
Raw Normal View History

2018-06-13 19:03:42 +02:00
(** Signature for matrices built on the {!Basis.t} *)
2020-10-10 10:59:09 +02:00
open Gaussian
2020-10-09 09:47:57 +02:00
open Linear_algebra
2018-06-13 19:03:42 +02:00
2020-10-02 18:55:19 +02:00
type t = (Basis.t, Basis.t) Matrix.t
2018-06-13 19:03:42 +02:00
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}. *)