2014-01-09 16:33:52 +00:00
|
|
|
set_option pp::implicit true.
|
|
|
|
set_option pp::colors false.
|
2014-01-05 20:05:08 +00:00
|
|
|
variable N : Type.
|
2014-01-03 00:08:32 +00:00
|
|
|
|
2014-01-05 20:05:08 +00:00
|
|
|
check
|
2014-01-03 00:08:32 +00:00
|
|
|
fun (a : N) (f : N -> N) (H : f a == a),
|
2014-01-06 03:10:21 +00:00
|
|
|
let calc1 : f a == a := substp (fun x : N, f a == _) (refl (f a)) H
|
2014-01-03 00:08:32 +00:00
|
|
|
in calc1.
|