File tree Expand file tree Collapse file tree 6 files changed +1
-40
lines changed
Expand file tree Collapse file tree 6 files changed +1
-40
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ builtin_initialize auxRecExt : TagDeclarationExtension ← mkTagDeclarationExten
2828def markAuxRecursor (env : Environment) (declName : Name) : Environment :=
2929 auxRecExt.tag env declName
3030
31- @[export lean_is_aux_recursor]
3231def isAuxRecursor (env : Environment) (declName : Name) : Bool :=
3332 auxRecExt.isTagged env declName
3433 -- TODO: use `markAuxRecursor` when they are defined
@@ -68,7 +67,6 @@ builtin_initialize noConfusionExt : TagDeclarationExtension ← mkTagDeclaration
6867def markNoConfusion (env : Environment) (n : Name) : Environment :=
6968 noConfusionExt.tag env n
7069
71- @[export lean_is_no_confusion]
7270def isNoConfusion (env : Environment) (n : Name) : Bool :=
7371 noConfusionExt.isTagged env n
7472
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ def smartUnfoldingMatchAlt? (e : Expr) : Option Expr :=
7777
7878def isAuxDef (constName : Name) : MetaM Bool := do
7979 let env ← getEnv
80- return isAuxRecursor env constName || isNoConfusion env constName
80+ return isAuxRecursor env constName
8181
8282/--
8383Retrieves `ConstInfo` for `declName`.
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ add_library(library OBJECT expr_lt.cpp
33 module.cpp dynlib.cpp replace_visitor.cpp num.cpp
44 class.cpp util.cpp print.cpp annotation.cpp
55 reducible.cpp init_module.cpp
6- aux_recursors.cpp
76 profiling.cpp time_task.cpp
87 formatter.cpp
98 elab_environment.cpp
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ Author: Leonardo de Moura
1313#include " library/suffixes.h"
1414#include " library/reducible.h"
1515#include " library/constants.h"
16- #include " library/aux_recursors.h"
1716#include " library/constructions/util.h"
1817
1918namespace lean {
You can’t perform that action at this time.
0 commit comments