2014-06-30 18:44:47 +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-08-01 01:40:09 +00:00
|
|
|
import logic.classes.decidable logic.classes.inhabited
|
2014-08-20 22:49:44 +00:00
|
|
|
|
2014-09-03 23:00:38 +00:00
|
|
|
open decidable
|
2014-06-30 02:30:38 +00:00
|
|
|
|
|
|
|
inductive unit : Type :=
|
2014-08-22 22:46:10 +00:00
|
|
|
star : unit
|
2014-07-22 16:56:05 +00:00
|
|
|
|
2014-09-04 23:36:06 +00:00
|
|
|
namespace unit
|
|
|
|
|
2014-07-22 16:56:05 +00:00
|
|
|
notation `⋆`:max := star
|
2014-06-30 02:30:38 +00:00
|
|
|
|
2014-09-04 23:36:06 +00:00
|
|
|
theorem at_most_one (a b : unit) : a = b :=
|
2014-09-04 22:03:59 +00:00
|
|
|
rec (rec rfl b) a
|
2014-07-19 19:09:47 +00:00
|
|
|
|
2014-09-04 23:36:06 +00:00
|
|
|
theorem eq_star (a : unit) : a = star :=
|
|
|
|
at_most_one a star
|
2014-09-02 02:44:04 +00:00
|
|
|
|
2014-08-20 22:49:44 +00:00
|
|
|
theorem unit_inhabited [instance] : inhabited unit :=
|
2014-09-04 23:36:06 +00:00
|
|
|
inhabited.mk ⋆
|
2014-07-19 19:09:47 +00:00
|
|
|
|
2014-07-29 02:58:57 +00:00
|
|
|
theorem decidable_eq [instance] (a b : unit) : decidable (a = b) :=
|
2014-09-04 23:36:06 +00:00
|
|
|
inl (at_most_one a b)
|
2014-08-20 22:49:44 +00:00
|
|
|
|
2014-08-20 02:32:44 +00:00
|
|
|
end unit
|