10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-30 00:44:18 +02:00
QCaml/ao_basis/lib/ao_basis.ml
2020-10-02 23:35:56 +02:00

9 lines
117 B
OCaml

type basis =
| Unknown
| Gaussian of Ao_basis_gaussian.t
type t =
{ basis : basis ;
cartesian : bool
}