mirror of
https://github.com/leanprover/lean4.git
synced 2026-03-22 04:44:07 +00:00
Compare commits
2 Commits
sofia/asyn
...
persistent
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3a2ffd7d52 | ||
|
|
81481fd0a2 |
@@ -10,3 +10,4 @@ import Lean.LibrarySuggestions.Basic
|
||||
import Lean.LibrarySuggestions.SymbolFrequency
|
||||
import Lean.LibrarySuggestions.MePo
|
||||
import Lean.LibrarySuggestions.SineQuaNon
|
||||
import Lean.LibrarySuggestions.Default
|
||||
|
||||
@@ -194,7 +194,7 @@ def maxSuggestions (selector : Selector) : Selector := fun g c => do
|
||||
return suggestions.take c.maxSuggestions
|
||||
|
||||
/-- Combine two premise selectors, returning the best suggestions. -/
|
||||
def combine (selector₁ : Selector) (selector₂ : Selector) : Selector := fun g c => do
|
||||
def combine (selector₁ selector₂ : Selector) : Selector := fun g c => do
|
||||
let suggestions₁ ← selector₁ g c
|
||||
let suggestions₂ ← selector₂ g c
|
||||
|
||||
@@ -211,6 +211,50 @@ def combine (selector₁ : Selector) (selector₂ : Selector) : Selector := fun
|
||||
|
||||
return sorted.take c.maxSuggestions
|
||||
|
||||
/--
|
||||
Combine two premise selectors by interspersing their results (ignoring scores).
|
||||
The parameter `ratio` (defaulting to 0.5) controls the ratio of suggestions from each selector
|
||||
while results are available from both.
|
||||
-/
|
||||
def intersperse (selector₁ selector₂ : Selector) (ratio : Float := 0.5) : Selector := fun g c => do
|
||||
-- Calculate how many suggestions to request from each selector based on the ratio
|
||||
let max₁ := (c.maxSuggestions.toFloat * ratio).toUInt32.toNat
|
||||
let max₂ := (c.maxSuggestions.toFloat * (1 - ratio)).toUInt32.toNat
|
||||
|
||||
let suggestions₁ ← selector₁ g { c with maxSuggestions := max₁ }
|
||||
let suggestions₂ ← selector₂ g { c with maxSuggestions := max₂ }
|
||||
|
||||
let mut result := #[]
|
||||
let mut i₁ := 0
|
||||
let mut i₂ := 0
|
||||
let mut count₁ := 0.0
|
||||
let mut count₂ := 0.0
|
||||
|
||||
-- Intersperse while both arrays have elements
|
||||
while h : i₁ < suggestions₁.size ∧ i₂ < suggestions₂.size ∧ result.size < c.maxSuggestions do
|
||||
-- Decide whether to take from selector₁ or selector₂ based on the ratio
|
||||
let currentRatio := if count₁ + count₂ <= 0.0 then 0.0 else count₁ / (count₁ + count₂)
|
||||
if currentRatio < ratio then
|
||||
result := result.push suggestions₁[i₁]
|
||||
i₁ := i₁ + 1
|
||||
count₁ := count₁ + 1
|
||||
else
|
||||
result := result.push suggestions₂[i₂]
|
||||
i₂ := i₂ + 1
|
||||
count₂ := count₂ + 1
|
||||
|
||||
-- Append remaining elements from selector₁
|
||||
while h : i₁ < suggestions₁.size ∧ result.size < c.maxSuggestions do
|
||||
result := result.push suggestions₁[i₁]
|
||||
i₁ := i₁ + 1
|
||||
|
||||
-- Append remaining elements from selector₂
|
||||
while h : i₂ < suggestions₂.size ∧ result.size < c.maxSuggestions do
|
||||
result := result.push suggestions₂[i₂]
|
||||
i₂ := i₂ + 1
|
||||
|
||||
return result
|
||||
|
||||
end Selector
|
||||
|
||||
section DenyList
|
||||
@@ -302,12 +346,41 @@ def currentFile : Selector := fun _ cfg => do
|
||||
| _ => continue
|
||||
return suggestions
|
||||
|
||||
builtin_initialize librarySuggestionsExt : EnvExtension (Option Selector) ←
|
||||
registerEnvExtension (pure none)
|
||||
builtin_initialize librarySuggestionsExt : SimplePersistentEnvExtension Syntax (Option Syntax) ←
|
||||
registerSimplePersistentEnvExtension {
|
||||
addEntryFn := fun _ stx => some stx -- Last entry wins
|
||||
addImportedFn := fun entries =>
|
||||
-- Take the last selector syntax from all imported modules
|
||||
entries.foldl (init := none) fun acc moduleEntries =>
|
||||
moduleEntries.foldl (init := acc) fun _ stx => some stx
|
||||
}
|
||||
|
||||
/--
|
||||
Helper function to elaborate and evaluate selector syntax.
|
||||
This is shared by both validation (`elabSetLibrarySuggestions`) and retrieval (`getSelector`).
|
||||
-/
|
||||
def elabAndEvalSelector (stx : Syntax) : MetaM Selector :=
|
||||
Elab.Term.TermElabM.run' do
|
||||
let selectorTerm ← Elab.Term.elabTermEnsuringType stx (some (Expr.const ``Selector []))
|
||||
unsafe Meta.evalExpr Selector (Expr.const ``Selector []) selectorTerm
|
||||
|
||||
/--
|
||||
Get the currently registered library suggestions selector by evaluating the stored syntax.
|
||||
Returns `none` if no selector is registered or if evaluation fails.
|
||||
|
||||
Uses `Term.elabTermEnsuringType` to elaborate arbitrary syntax (not just identifiers).
|
||||
-/
|
||||
def getSelector : MetaM (Option Selector) := do
|
||||
let some stx := librarySuggestionsExt.getState (← getEnv) | return none
|
||||
try
|
||||
let selector ← elabAndEvalSelector stx
|
||||
return some selector
|
||||
catch _ =>
|
||||
return none
|
||||
|
||||
/-- Generate library suggestions for the given metavariable, using the currently registered library suggestions engine. -/
|
||||
def select (m : MVarId) (c : Config := {}) : MetaM (Array Suggestion) := do
|
||||
let some selector := librarySuggestionsExt.getState (← getEnv) |
|
||||
let some selector ← getSelector |
|
||||
throwError "No library suggestions engine registered. \
|
||||
(Note that Lean does not provide a default library suggestions engine, \
|
||||
these must be provided by a downstream library, \
|
||||
@@ -324,23 +397,20 @@ library suggestions engines are configured via options in the `lakefile`, and
|
||||
commands are only used to override in a single declaration or file.
|
||||
-/
|
||||
|
||||
/-- Set the current library suggestions engine.-/
|
||||
def registerLibrarySuggestions (selector : Selector) : CoreM Unit := do
|
||||
modifyEnv fun env => librarySuggestionsExt.setState env (some selector)
|
||||
|
||||
open Lean Elab Command in
|
||||
@[builtin_command_elab setLibrarySuggestionsCmd, inherit_doc setLibrarySuggestionsCmd]
|
||||
def elabSetLibrarySuggestions : CommandElab
|
||||
| `(command| set_library_suggestions $selector) => do
|
||||
if `Lean.LibrarySuggestions.Basic ∉ (← getEnv).header.moduleNames then
|
||||
logWarning "Add `import Lean.LibrarySuggestions.Basic` before using the `set_library_suggestions` command."
|
||||
let selector ← liftTermElabM do
|
||||
-- Validate that the syntax can be elaborated (to catch errors early)
|
||||
liftTermElabM do
|
||||
try
|
||||
let selectorTerm ← Term.elabTermEnsuringType selector (some (Expr.const ``Selector []))
|
||||
unsafe Meta.evalExpr Selector (Expr.const ``Selector []) selectorTerm
|
||||
discard <| elabAndEvalSelector selector
|
||||
catch _ =>
|
||||
throwError "Failed to elaborate {selector} as a `MVarId → Config → MetaM (Array Suggestion)`."
|
||||
liftCoreM (registerLibrarySuggestions selector)
|
||||
-- Store the syntax (not the evaluated Selector) for persistence
|
||||
modifyEnv fun env => librarySuggestionsExt.addEntry env selector
|
||||
| _ => throwUnsupportedSyntax
|
||||
|
||||
open Lean.Elab.Tactic in
|
||||
|
||||
25
src/Lean/LibrarySuggestions/Default.lean
Normal file
25
src/Lean/LibrarySuggestions/Default.lean
Normal file
@@ -0,0 +1,25 @@
|
||||
/-
|
||||
Copyright (c) 2025 Lean FRO, LLC. All rights reserved.
|
||||
Released under Apache 2.0 license as described in the file LICENSE.
|
||||
Authors: Kim Morrison
|
||||
-/
|
||||
module
|
||||
|
||||
prelude
|
||||
import all Lean.LibrarySuggestions.SineQuaNon
|
||||
|
||||
/-!
|
||||
# Default library suggestions engine
|
||||
|
||||
This module sets the default library suggestions engine to Sine Qua Non.
|
||||
Any module that imports this (directly or transitively) will have library suggestions enabled.
|
||||
-/
|
||||
|
||||
namespace Lean.LibrarySuggestions
|
||||
|
||||
open Lean LibrarySuggestions SineQuaNon
|
||||
|
||||
-- Set the default library suggestions engine to Sine Qua Non
|
||||
set_library_suggestions Lean.LibrarySuggestions.sineQuaNonSelector
|
||||
|
||||
end Lean.LibrarySuggestions
|
||||
BIN
stage0/stdlib/Init/Data/Array/BinSearch.c
generated
BIN
stage0/stdlib/Init/Data/Array/BinSearch.c
generated
Binary file not shown.
BIN
stage0/stdlib/Init/Data/Array/Lex/Basic.c
generated
BIN
stage0/stdlib/Init/Data/Array/Lex/Basic.c
generated
Binary file not shown.
BIN
stage0/stdlib/Init/Data/Dyadic/Basic.c
generated
BIN
stage0/stdlib/Init/Data/Dyadic/Basic.c
generated
Binary file not shown.
BIN
stage0/stdlib/Init/Data/Nat/Linear.c
generated
BIN
stage0/stdlib/Init/Data/Nat/Linear.c
generated
Binary file not shown.
BIN
stage0/stdlib/Init/Data/Nat/SOM.c
generated
BIN
stage0/stdlib/Init/Data/Nat/SOM.c
generated
Binary file not shown.
BIN
stage0/stdlib/Init/Data/Vector/Basic.c
generated
BIN
stage0/stdlib/Init/Data/Vector/Basic.c
generated
Binary file not shown.
BIN
stage0/stdlib/Init/Grind/Ring/CommSolver.c
generated
BIN
stage0/stdlib/Init/Grind/Ring/CommSolver.c
generated
Binary file not shown.
BIN
stage0/stdlib/Init/Meta/Defs.c
generated
BIN
stage0/stdlib/Init/Meta/Defs.c
generated
Binary file not shown.
BIN
stage0/stdlib/Init/MetaTypes.c
generated
BIN
stage0/stdlib/Init/MetaTypes.c
generated
Binary file not shown.
BIN
stage0/stdlib/Init/System/Uri.c
generated
BIN
stage0/stdlib/Init/System/Uri.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lake/Build/Common.c
generated
BIN
stage0/stdlib/Lake/Build/Common.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lake/Build/Data.c
generated
BIN
stage0/stdlib/Lake/Build/Data.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lake/Build/Library.c
generated
BIN
stage0/stdlib/Lake/Build/Library.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lake/Build/Module.c
generated
BIN
stage0/stdlib/Lake/Build/Module.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lake/Build/Package.c
generated
BIN
stage0/stdlib/Lake/Build/Package.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lake/Build/Run.c
generated
BIN
stage0/stdlib/Lake/Build/Run.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lake/CLI/Build.c
generated
BIN
stage0/stdlib/Lake/CLI/Build.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lake/CLI/Init.c
generated
BIN
stage0/stdlib/Lake/CLI/Init.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lake/CLI/Translate/Lean.c
generated
BIN
stage0/stdlib/Lake/CLI/Translate/Lean.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lake/CLI/Translate/Toml.c
generated
BIN
stage0/stdlib/Lake/CLI/Translate/Toml.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lake/Config/Cache.c
generated
BIN
stage0/stdlib/Lake/Config/Cache.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lake/Config/Meta.c
generated
BIN
stage0/stdlib/Lake/Config/Meta.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lake/DSL/DeclUtil.c
generated
BIN
stage0/stdlib/Lake/DSL/DeclUtil.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lake/DSL/Package.c
generated
BIN
stage0/stdlib/Lake/DSL/Package.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lake/DSL/Targets.c
generated
BIN
stage0/stdlib/Lake/DSL/Targets.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lake/Load/Lean/Elab.c
generated
BIN
stage0/stdlib/Lake/Load/Lean/Elab.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lake/Load/Resolve.c
generated
BIN
stage0/stdlib/Lake/Load/Resolve.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lake/Load/Toml.c
generated
BIN
stage0/stdlib/Lake/Load/Toml.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lake/Toml/Elab/Expression.c
generated
BIN
stage0/stdlib/Lake/Toml/Elab/Expression.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lake/Util/OrderedTagAttribute.c
generated
BIN
stage0/stdlib/Lake/Util/OrderedTagAttribute.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/AddDecl.c
generated
BIN
stage0/stdlib/Lean/AddDecl.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Attributes.c
generated
BIN
stage0/stdlib/Lean/Attributes.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/BuiltinDocAttr.c
generated
BIN
stage0/stdlib/Lean/BuiltinDocAttr.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Compiler/IR/Borrow.c
generated
BIN
stage0/stdlib/Lean/Compiler/IR/Borrow.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Compiler/IR/EmitC.c
generated
BIN
stage0/stdlib/Lean/Compiler/IR/EmitC.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Compiler/IR/EmitLLVM.c
generated
BIN
stage0/stdlib/Lean/Compiler/IR/EmitLLVM.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Compiler/IR/ExpandResetReuse.c
generated
BIN
stage0/stdlib/Lean/Compiler/IR/ExpandResetReuse.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Compiler/IR/PushProj.c
generated
BIN
stage0/stdlib/Lean/Compiler/IR/PushProj.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Compiler/IR/RC.c
generated
BIN
stage0/stdlib/Lean/Compiler/IR/RC.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Compiler/LCNF/Basic.c
generated
BIN
stage0/stdlib/Lean/Compiler/LCNF/Basic.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Compiler/LCNF/Closure.c
generated
BIN
stage0/stdlib/Lean/Compiler/LCNF/Closure.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Compiler/LCNF/ElimDeadBranches.c
generated
BIN
stage0/stdlib/Lean/Compiler/LCNF/ElimDeadBranches.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Compiler/LCNF/FloatLetIn.c
generated
BIN
stage0/stdlib/Lean/Compiler/LCNF/FloatLetIn.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Compiler/LCNF/Main.c
generated
BIN
stage0/stdlib/Lean/Compiler/LCNF/Main.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Compiler/LCNF/PassManager.c
generated
BIN
stage0/stdlib/Lean/Compiler/LCNF/PassManager.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Compiler/LCNF/Simp/InlineCandidate.c
generated
BIN
stage0/stdlib/Lean/Compiler/LCNF/Simp/InlineCandidate.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Compiler/LCNF/Simp/JpCases.c
generated
BIN
stage0/stdlib/Lean/Compiler/LCNF/Simp/JpCases.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Compiler/LCNF/Simp/Main.c
generated
BIN
stage0/stdlib/Lean/Compiler/LCNF/Simp/Main.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Compiler/LCNF/Specialize.c
generated
BIN
stage0/stdlib/Lean/Compiler/LCNF/Specialize.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Compiler/LCNF/ToLCNF.c
generated
BIN
stage0/stdlib/Lean/Compiler/LCNF/ToLCNF.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Compiler/LCNF/ToMono.c
generated
BIN
stage0/stdlib/Lean/Compiler/LCNF/ToMono.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Compiler/LCNF/Types.c
generated
BIN
stage0/stdlib/Lean/Compiler/LCNF/Types.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Compiler/LCNF/Visibility.c
generated
BIN
stage0/stdlib/Lean/Compiler/LCNF/Visibility.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Compiler/Main.c
generated
BIN
stage0/stdlib/Lean/Compiler/Main.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/CoreM.c
generated
BIN
stage0/stdlib/Lean/CoreM.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Data/EditDistance.c
generated
BIN
stage0/stdlib/Lean/Data/EditDistance.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Data/Lsp/Basic.c
generated
BIN
stage0/stdlib/Lean/Data/Lsp/Basic.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Data/Lsp/Internal.c
generated
BIN
stage0/stdlib/Lean/Data/Lsp/Internal.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Data/Lsp/LanguageFeatures.c
generated
BIN
stage0/stdlib/Lean/Data/Lsp/LanguageFeatures.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Data/RBMap.c
generated
BIN
stage0/stdlib/Lean/Data/RBMap.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Data/Xml/Parser.c
generated
BIN
stage0/stdlib/Lean/Data/Xml/Parser.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/DefEqAttrib.c
generated
BIN
stage0/stdlib/Lean/DefEqAttrib.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/DocString/Add.c
generated
BIN
stage0/stdlib/Lean/DocString/Add.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/DocString/Links.c
generated
BIN
stage0/stdlib/Lean/DocString/Links.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/DocString/Markdown.c
generated
BIN
stage0/stdlib/Lean/DocString/Markdown.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/DocString/Parser.c
generated
BIN
stage0/stdlib/Lean/DocString/Parser.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/DocString/Types.c
generated
BIN
stage0/stdlib/Lean/DocString/Types.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/App.c
generated
BIN
stage0/stdlib/Lean/Elab/App.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/BinderPredicates.c
generated
BIN
stage0/stdlib/Lean/Elab/BinderPredicates.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/Binders.c
generated
BIN
stage0/stdlib/Lean/Elab/Binders.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/BuiltinCommand.c
generated
BIN
stage0/stdlib/Lean/Elab/BuiltinCommand.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/BuiltinEvalCommand.c
generated
BIN
stage0/stdlib/Lean/Elab/BuiltinEvalCommand.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/BuiltinNotation.c
generated
BIN
stage0/stdlib/Lean/Elab/BuiltinNotation.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/BuiltinTerm.c
generated
BIN
stage0/stdlib/Lean/Elab/BuiltinTerm.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/Calc.c
generated
BIN
stage0/stdlib/Lean/Elab/Calc.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/Command.c
generated
BIN
stage0/stdlib/Lean/Elab/Command.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/DeclModifiers.c
generated
BIN
stage0/stdlib/Lean/Elab/DeclModifiers.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/DeclNameGen.c
generated
BIN
stage0/stdlib/Lean/Elab/DeclNameGen.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/Declaration.c
generated
BIN
stage0/stdlib/Lean/Elab/Declaration.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/DefView.c
generated
BIN
stage0/stdlib/Lean/Elab/DefView.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/Deriving/Basic.c
generated
BIN
stage0/stdlib/Lean/Elab/Deriving/Basic.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/Deriving/FromToJson.c
generated
BIN
stage0/stdlib/Lean/Elab/Deriving/FromToJson.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/Deriving/Inhabited.c
generated
BIN
stage0/stdlib/Lean/Elab/Deriving/Inhabited.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/Do.c
generated
BIN
stage0/stdlib/Lean/Elab/Do.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/DocString.c
generated
BIN
stage0/stdlib/Lean/Elab/DocString.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/DocString/Builtin.c
generated
BIN
stage0/stdlib/Lean/Elab/DocString/Builtin.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/DocString/Builtin/Keywords.c
generated
BIN
stage0/stdlib/Lean/Elab/DocString/Builtin/Keywords.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/DocString/Builtin/Postponed.c
generated
BIN
stage0/stdlib/Lean/Elab/DocString/Builtin/Postponed.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/DocString/Builtin/Scopes.c
generated
BIN
stage0/stdlib/Lean/Elab/DocString/Builtin/Scopes.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/ElabRules.c
generated
BIN
stage0/stdlib/Lean/Elab/ElabRules.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/ErrorExplanation.c
generated
BIN
stage0/stdlib/Lean/Elab/ErrorExplanation.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/Extra.c
generated
BIN
stage0/stdlib/Lean/Elab/Extra.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/Inductive.c
generated
BIN
stage0/stdlib/Lean/Elab/Inductive.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/InheritDoc.c
generated
BIN
stage0/stdlib/Lean/Elab/InheritDoc.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/LetRec.c
generated
BIN
stage0/stdlib/Lean/Elab/LetRec.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/Macro.c
generated
BIN
stage0/stdlib/Lean/Elab/Macro.c
generated
Binary file not shown.
BIN
stage0/stdlib/Lean/Elab/MacroArgUtil.c
generated
BIN
stage0/stdlib/Lean/Elab/MacroArgUtil.c
generated
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user