forked from leanprover/lean4
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add
auto_attach
simp set (no functionality yet) (leanprover#6956
) this PR helps with bootstrapping leanprover#6744.
- Loading branch information
1 parent
9e690fe
commit 33d2011
Showing
4 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/- | ||
Copyright (c) 2025 Lean FRO, LLC. All rights reserved. | ||
Released under Apache 2.0 license as described in the file LICENSE. | ||
Authors: Joachim Breitner | ||
-/ | ||
prelude | ||
import Lean.Meta.Transform | ||
import Lean.Meta.Match.MatcherApp.Basic | ||
import Lean.Elab.Tactic.Simp | ||
|
||
open Lean Meta | ||
|
||
namespace Lean.Elab.WF | ||
|
||
builtin_initialize autoAttachSimpExtension : SimpExtension ← | ||
registerSimpAttr `auto_attach | ||
"(not yet functional)" | ||
|
||
end Lean.Elab.WF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters