lean2/tests/lean/simp12.lean
Leonardo de Moura 331b5846c6 test(library/simplifier): add test for the single_pass option in the simplifier
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-01-21 13:47:54 -08:00

18 lines
480 B
Text

variables a b c d e f : Nat
rewrite_set simple
add_rewrite Nat::add_assoc Nat::add_comm Nat::add_left_comm Nat::distributer Nat::distributel : simple
(*
local opts = options({"simplifier", "single_pass"}, true)
local t = parse_lean("f + (c + f + d) + (e * (a + c) + (d + a))")
print(t)
for i = 1, 10 do
local t2, pr = simplify(t, "simple", get_environment(), context(), opts)
print("i: " .. i .. " ====>")
print(t2)
if t == t2 then
break
end
t = t2
end
*)