mirror of
https://github.com/LCPQ/quantum_package
synced 2024-10-31 19:23:50 +01:00
16 lines
226 B
OCaml
16 lines
226 B
OCaml
type t =
|
|
| Guess
|
|
| Canonical
|
|
| Natural
|
|
| Localized
|
|
| Orthonormalized
|
|
| None
|
|
with sexp
|
|
|
|
(** String representation *)
|
|
val to_string : t -> string
|
|
|
|
(** Build from string representation *)
|
|
val of_string : string -> t
|
|
|