10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-11-06 22:23:42 +01:00
QCaml/operators/lib/operator.mli

10 lines
248 B
OCaml
Raw Normal View History

2020-09-27 23:55:42 +02:00
type 'a t =
| F12 of F12_operator.t
| Gaussian of Gaussian_operator.t
val of_f12 : F12_operator.t -> F12_operator.t t
(** Creates a F12 operator *)
val of_gaussian: Gaussian_operator.t -> Gaussian_operator.t t
(** Creates a Gaussian operator *)