2014-08-25 02:58:48 +00:00
|
|
|
import logic
|
2014-09-03 23:00:38 +00:00
|
|
|
open tactic inhabited
|
2014-07-09 01:21:22 +00:00
|
|
|
|
2014-09-04 22:03:59 +00:00
|
|
|
namespace foo
|
2014-07-10 12:12:53 +00:00
|
|
|
inductive sum (A : Type) (B : Type) : Type :=
|
2014-08-22 22:46:10 +00:00
|
|
|
inl : A → sum A B,
|
|
|
|
inr : B → sum A B
|
2014-07-09 01:21:22 +00:00
|
|
|
|
|
|
|
theorem inl_inhabited {A : Type} (B : Type) (H : inhabited A) : inhabited (sum A B)
|
2014-09-04 23:36:06 +00:00
|
|
|
:= inhabited.destruct H (λ a, inhabited.mk (sum.inl B a))
|
2014-07-09 01:21:22 +00:00
|
|
|
|
|
|
|
theorem inr_inhabited (A : Type) {B : Type} (H : inhabited B) : inhabited (sum A B)
|
2014-09-04 23:36:06 +00:00
|
|
|
:= inhabited.destruct H (λ b, inhabited.mk (sum.inr A b))
|
2014-07-09 01:21:22 +00:00
|
|
|
|
|
|
|
infixl `..`:100 := append
|
|
|
|
|
|
|
|
definition my_tac := repeat (trace "iteration"; state;
|
|
|
|
( apply @inl_inhabited; trace "used inl"
|
|
|
|
.. apply @inr_inhabited; trace "used inr"
|
2014-09-04 23:36:06 +00:00
|
|
|
.. apply @num_inhabited; trace "used num")) ; now
|
2014-07-09 01:21:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
tactic_hint [inhabited] my_tac
|
|
|
|
|
2014-09-04 23:36:06 +00:00
|
|
|
theorem T : inhabited (sum false num)
|
2014-09-04 22:03:59 +00:00
|
|
|
|
|
|
|
end foo
|