Fix example

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2013-08-23 08:52:52 -07:00
parent d30c6b2c9d
commit 6edda12549

View file

@ -3,5 +3,5 @@ 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.
Set pp::lean::max_depth 2000.
Set lean::pp::max_depth 2000.
Eval f3 f 0.