10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-07-04 18:35:50 +02:00
QCaml/operators/lib/operator.mli

15 lines
332 B
OCaml
Raw Normal View History

2020-09-28 00:24:36 +02:00
type t =
| F12 of F12_operator.t
| Gaussian of Gaussian_operator.t
| Range_sep of Rs_operator.t
2020-09-27 23:55:42 +02:00
2020-09-28 00:24:36 +02:00
val of_f12 : F12_operator.t -> t
2020-09-27 23:55:42 +02:00
(** Creates a F12 operator *)
2020-09-28 00:24:36 +02:00
val of_gaussian: Gaussian_operator.t -> t
2020-09-27 23:55:42 +02:00
(** Creates a Gaussian operator *)
2020-09-28 00:24:36 +02:00
val of_range_separation: Rs_operator.t -> t
(** Creates a range-separated operator *)