10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-02 03:15:29 +02:00
quantum_package/ocaml/MO_label.mli

16 lines
234 B
OCaml

type t =
| Guess
| Canonical
| Natural
| Localized
| Orthonormalized
| None
[@@deriving sexp]
(** String representation *)
val to_string : t -> string
(** Build from string representation *)
val of_string : string -> t