10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-30 00:44:18 +02:00
QCaml/operators/lib/operator.ml

10 lines
205 B
OCaml

type t =
| F12 of F12_operator.t
| Gaussian of Gaussian_operator.t
| Range_sep of Rs_operator.t
let of_f12 f = F12 f
let of_gaussian g = Gaussian g
let of_range_separation mu = Range_sep mu