2014-11-07 16:41:14 +00:00
|
|
|
-- Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
|
|
|
-- Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
-- Author: Leonardo de Moura
|
2014-12-01 04:34:12 +00:00
|
|
|
prelude
|
|
|
|
import init.datatypes init.reserved_notation
|
2014-11-07 16:41:14 +00:00
|
|
|
|
|
|
|
namespace bool
|
|
|
|
definition cond {A : Type} (b : bool) (t e : A) :=
|
2015-02-11 20:49:27 +00:00
|
|
|
bool.rec_on b e t
|
2014-11-07 16:41:14 +00:00
|
|
|
|
|
|
|
definition bor (a b : bool) :=
|
2015-02-11 20:49:27 +00:00
|
|
|
bool.rec_on a (bool.rec_on b ff tt) tt
|
2014-11-07 16:41:14 +00:00
|
|
|
|
|
|
|
notation a || b := bor a b
|
|
|
|
|
|
|
|
definition band (a b : bool) :=
|
2015-02-11 20:49:27 +00:00
|
|
|
bool.rec_on a ff (bool.rec_on b ff tt)
|
2014-11-07 16:41:14 +00:00
|
|
|
|
|
|
|
notation a && b := band a b
|
|
|
|
|
|
|
|
definition bnot (a : bool) :=
|
2015-02-11 20:49:27 +00:00
|
|
|
bool.rec_on a tt ff
|
2014-11-07 16:41:14 +00:00
|
|
|
end bool
|