https://github.com/EasyCrypt/easycrypt
Raw File
Tip revision: 7899a09d6988f4909faac528759eaa37c69d2c18 authored by François Dupressoir on 27 March 2023, 12:54:26 UTC
[readme] update prover, compiler versions
Tip revision: 7899a09
CoreReal.ec
(* -------------------------------------------------------------------- *)
op from_int: int -> real.

op zero = from_int 0.
op one  = from_int 1.
op add  : real -> real -> real.
op opp  : real -> real.
op mul  : real -> real -> real.
op inv  : real -> real.

op lt : real -> real -> bool.
op le = fun x y => lt x y \/ x = y.

back to top