10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-29 16:34:43 +02:00
QCaml/Nuclei/Charge.ml

15 lines
253 B
OCaml
Raw Normal View History

2018-01-02 22:02:01 +01:00
type t = float
let of_float x = x
2018-01-02 22:33:17 +01:00
let of_int i = float_of_int i
let of_string s = float_of_string s
2018-01-02 22:02:01 +01:00
let to_float x = x
2018-01-02 22:33:17 +01:00
let to_int x = int_of_float x
2018-01-02 22:02:01 +01:00
let to_string x =
if x >= 0. then
Printf.sprintf "+%f" x
else
Printf.sprintf "%f" x