quantum_package/ocaml/MO_label.mli

16 lines
234 B
OCaml
Raw Normal View History

2014-10-29 16:56:16 +01:00
type t =
| Guess
| Canonical
| Natural
| Localized
2014-11-03 15:37:02 +01:00
| Orthonormalized
2014-10-29 16:56:16 +01:00
| None
2017-08-18 18:28:33 +02:00
[@@deriving sexp]
2014-10-29 16:56:16 +01:00
(** String representation *)
val to_string : t -> string
(** Build from string representation *)
val of_string : string -> t