lean4-htt/library/init/meta/ac_tactics.lean

14 lines
496 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.

/-
Copyright (c) 2016 Microsoft Corporation. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Authors: Leonardo de Moura
-/
prelude
import init.meta.tactic
namespace tactic
/- (flat_assoc op assoc e) -/
meta constant flat_assoc : expr → expr → expr → tactic (expr × expr)
/- (perm_ac op assoc comm e1 e2) Try to construct a proof that e1 = e2 modulo AC -/
meta constant perm_ac : expr → expr → expr → expr → expr → tactic expr
end tactic