2014-01-05 21:45:31 -08:00
|
|
|
set::option pp::implicit true.
|
|
|
|
set::option pp::colors false.
|
2014-01-05 12:05:08 -08:00
|
|
|
variable N : Type.
|
2014-01-02 16:08:32 -08:00
|
|
|
|
2014-01-05 12:05:08 -08:00
|
|
|
check
|
2014-01-02 16:08:32 -08:00
|
|
|
fun (a : N) (f : N -> N) (H : f a == a),
|
2014-01-05 19:10:21 -08:00
|
|
|
let calc1 : f a == a := substp (fun x : N, f a == _) (refl (f a)) H
|
2014-01-02 16:08:32 -08:00
|
|
|
in calc1.
|