9
1
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-01 18:25:17 +02:00
qp2/ocaml/MO_label.mli
2019-04-17 17:32:07 +02:00

17 lines
244 B
OCaml

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