mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-03 12:43:48 +01:00
18 lines
290 B
OCaml
18 lines
290 B
OCaml
open Qptypes
|
|
open Sexplib.Std
|
|
|
|
type t =
|
|
{ sym : Symmetry.t ;
|
|
expo : AO_expo.t ;
|
|
} [@@deriving sexp]
|
|
|
|
let to_string p =
|
|
let { sym = s ; expo = e } = p in
|
|
Printf.sprintf "(%s, %22e)"
|
|
(Symmetry.to_string s)
|
|
(AO_expo.to_float e)
|
|
|
|
|
|
let of_sym_expo s e =
|
|
{ sym=s ; expo=e}
|