mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-06 22:23:42 +01:00
10 lines
248 B
OCaml
10 lines
248 B
OCaml
|
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 *)
|