10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-21 04:32:05 +02:00
QCaml/Utils/Coordinate_type.mli
2018-02-24 23:57:38 +01:00

12 lines
296 B
OCaml

(** Coordinate_type can be Bohr or Angstrom. This module provides the conversion
functions from {!Bohr.t} to {!Angstrom.t} and from {!Angstrom.t} to {!Bohr.t} *)
type bohr = Bohr.t
type angstrom = Angstrom.t
val bohr_to_angstrom : bohr -> angstrom
val angstrom_to_bohr : angstrom -> bohr