mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-03 20:53:54 +01:00
12 lines
220 B
OCaml
12 lines
220 B
OCaml
|
type t =
|
||
|
{ sym : Symmetry.t;
|
||
|
expo : Qptypes.AO_expo.t;
|
||
|
} [@@deriving sexp]
|
||
|
|
||
|
(** Conversion to string for printing *)
|
||
|
val to_string : t -> string
|
||
|
|
||
|
(** Creation *)
|
||
|
val of_sym_expo : Symmetry.t -> Qptypes.AO_expo.t -> t
|
||
|
|