f1b97b18b4
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
32 lines
1.2 KiB
Text
32 lines
1.2 KiB
Text
Definition double {A : Type} (f : A -> A) : A -> A := fun x, f (f x).
|
|
Definition big {A : Type} (f : A -> A) : A -> A := (double (double (double (double (double (double (double f))))))).
|
|
|
|
(**
|
|
|
|
-- Tactic for trying to prove goal using Reflexivity, Congruence and available assumptions
|
|
local congr_tac = Repeat(OrElse(apply_tac("Refl"), apply_tac("Congr"), assumption_tac()))
|
|
|
|
-- Create an eager tactic that only tries to prove goal after unfolding everything
|
|
eager_tac = Then(-- unfold homogeneous equality
|
|
Try(unfold_tac("eq")),
|
|
-- keep unfolding defintions above and beta-reducing
|
|
Repeat(unfold_tac() .. Repeat(beta_tac())),
|
|
congr_tac)
|
|
|
|
-- The 'lazy' version tries first to prove without unfolding anything
|
|
lazy_tac = OrElse(Then(Try(unfold_tac("eq")), congr_tac, now_tac()),
|
|
eager_tac)
|
|
|
|
**)
|
|
|
|
Theorem T1 (a b : Int) (f : Int -> Int) (H : a = b) : (big f a) = (big f b).
|
|
eager_tac.
|
|
done.
|
|
|
|
Theorem T2 (a b : Int) (f : Int -> Int) (H : a = b) : (big f a) = (big f b).
|
|
lazy_tac.
|
|
done.
|
|
|
|
Theorem T3 (a b : Int) (f : Int -> Int) (H : a = b) : (big f a) = ((double (double (double (double (double (double (double f))))))) b).
|
|
lazy_tac.
|
|
done.
|