Merge branch 'upgrade-altergo-2.6.0' into 'master'
[why3.git] / stdlib / bool.mlw
blobefcb695cc6e20f647200a40929247e6c4443c369
2 (** {1 Booleans} *)
4 (** {2 Basic theory of Booleans} *)
6 module Bool
8   let function andb (x y : bool) : bool =
9     match x with
10     | True -> y
11     | False -> False
12     end
14   let function orb (x y : bool) : bool =
15     match x with
16     | False -> y
17     | True -> True
18     end
20   let function notb (x : bool) : bool =
21     match x with
22     | False -> True
23     | True  -> False
24     end
26   let function xorb (x y : bool) : bool =
27     match x with
28     | False -> y
29     | True -> notb y
30     end
32   let function implb (x y : bool) : bool =
33     match x with
34     | False -> True
35     | True -> y
36     end
38   val (=) (x y : bool) : bool ensures { result <-> x = y }
40 end
42 (** {2 Operator if-then-else} *)
44 module Ite
46   let function ite (b:bool) (x y : 'a) : 'a =
47     match b with
48     | True  -> x
49     | False -> y
50     end
52 end