2013-08-22 05:45:48 +00:00
|
|
|
Definition f1 (f : Int -> Int) (x : Int) : Int := f (f (f (f x)))
|
|
|
|
Definition f2 (f : Int -> Int) (x : Int) : Int := f1 (f1 (f1 (f1 f))) x
|
|
|
|
Definition f3 (f : Int -> Int) (x : Int) : Int := f1 (f2 (f2 f)) x
|
|
|
|
Variable f : Int -> Int.
|
|
|
|
Set pp::width 80.
|
2013-08-23 15:52:52 +00:00
|
|
|
Set lean::pp::max_depth 2000.
|
2013-08-22 05:45:48 +00:00
|
|
|
Eval f3 f 0.
|