lean2/tests/lean/simp7b.lean
Leonardo de Moura ad219d43d9 refactor(*): semantic attachment parsing and simplification
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-01-20 14:44:45 -08:00

10 lines
263 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

variables a b c d e f p: Bool
rewrite_set simple
add_rewrite and_assoc and_comm and_left_comm : simple
(*
local t = parse_lean("((f p) ∧ (e p)) ∧ ((p d) ∧ c) ∧ (b ∧ a)")
local t2 = simplify(t, "simple")
print(t)
print("====>")
print(t2)
*)