mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-19 12:32:21 +01:00
11 lines
161 B
OCaml
11 lines
161 B
OCaml
|
(** Data structure for Atomic Orbitals. *)
|
||
|
|
||
|
type basis =
|
||
|
| Unknown
|
||
|
| Gaussian of Ao_basis_gaussian.t
|
||
|
|
||
|
type t =
|
||
|
{ basis : basis ;
|
||
|
cartesian : bool
|
||
|
}
|