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-16 23:07:51 +00:00
|
|
|
fun (a : N) (f : N -> N) (H : f a = a),
|
|
|
|
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.
|