2014-08-01 00:48:51 +00:00
|
|
|
-- Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
|
|
|
-- Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
-- Authors: Leonardo de Moura, Jeremy Avigad
|
|
|
|
|
2014-08-04 02:57:29 +00:00
|
|
|
import logic.connectives.basic
|
2014-08-01 00:48:51 +00:00
|
|
|
|
2014-08-15 03:12:54 +00:00
|
|
|
inductive inhabited (A : Type) : Type :=
|
2014-08-20 02:32:44 +00:00
|
|
|
| inhabited_mk : A → inhabited A
|
2014-08-01 00:48:51 +00:00
|
|
|
|
2014-08-20 02:32:44 +00:00
|
|
|
namespace inhabited
|
|
|
|
|
|
|
|
definition inhabited_destruct {A : Type} {B : Type} (H1 : inhabited A) (H2 : A → B) : B :=
|
2014-08-01 00:48:51 +00:00
|
|
|
inhabited_rec H2 H1
|
|
|
|
|
2014-08-20 22:49:44 +00:00
|
|
|
definition Prop_inhabited [instance] : inhabited Prop :=
|
2014-08-20 02:32:44 +00:00
|
|
|
inhabited_mk true
|
2014-08-01 00:48:51 +00:00
|
|
|
|
2014-08-20 22:49:44 +00:00
|
|
|
definition fun_inhabited [instance] (A : Type) {B : Type} (H : inhabited B) : inhabited (A → B) :=
|
2014-08-20 02:32:44 +00:00
|
|
|
inhabited_destruct H (take b, inhabited_mk (λa, b))
|
|
|
|
|
|
|
|
definition default (A : Type) {H : inhabited A} : A := inhabited_destruct H (take a, a)
|
2014-08-15 03:12:54 +00:00
|
|
|
|
2014-08-20 02:32:44 +00:00
|
|
|
end inhabited
|