10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-26 23:22:07 +02:00
QCaml/Utils/Angular_momentum.mli
2018-01-19 03:14:06 +01:00

11 lines
355 B
OCaml

exception AngularMomentumError of string
type t = S | P | D | F | G | H | I | J | K | L | M | N | O
val of_char : char -> t
val to_string : t -> string
val to_char : t -> char
val to_int : t -> int
val of_int : int -> t
type kind = Kind_1 of t | Kind_2 of (t * t) | Kind_4 of (t * t * t * t)
val n_functions : t -> int
val zkey_array : kind -> Z.t array