mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-04 05:03:50 +01:00
16 lines
234 B
OCaml
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
|
||
|
|