Documentation

Lean.Meta.LazyDiscrTree

Lazy Discrimination Tree #

This file defines a new type of discrimination tree optimized for rapid population of imported modules for use in tactics. It uses a lazy initialization strategy.

The discrimination tree can be created through createImportedDiscrTree. This creates a discrimination tree from all imported modules in an environment using a callback that provides the entries as InitEntry values.

The function getMatch can be used to get the values that match the expression as well as an updated lazy discrimination tree that has elaborated additional parts of the tree.

Discrimination tree key.

Instances For

    Hash function

    Equations
      Instances For

        LazyDiscrTree is a variant of the discriminator tree datatype DiscrTree in Lean core that is designed to be efficiently initializable with a large number of patterns. This is useful in contexts such as searching an entire Lean environment for expressions that match a pattern.

        Lazy discriminator trees achieve good performance by minimizing the amount of work that is done up front to build the discriminator tree. When first adding patterns to the tree, only the root discriminator key is computed and processing the remaining terms is deferred until demanded by a match.

        Instances For

          Create a key path from an expression using the function used for patterns.

          This differs from Lean.Meta.DiscrTree.mkPath and targetPath in that the expression should uses free variables rather than meta-variables for holes.

          Equations
            Instances For

              Create a key path from an expression we are matching against.

              This should have mvars instantiated where feasible.

              Equations
                Instances For

                  This drops a specific key from the lazy discrimination tree so that all the entries matching that key exactly are removed.

                  Equations
                    Instances For

                      A match result contains the terms formed from matching a term against patterns in the discrimination tree.

                      • elts : Array (Array (Array α))

                        The elements in the match result.

                        The top-level array represents an array from score values to the results with that score. A score is the number of non-star matches in a pattern against the term, and thus bounded by the size of the term being matched against. The elements of this array are themselves arrays of non-empty arrays so that we can defer concatenating results until needed.

                      Instances For

                        Number of elements in result

                        Equations
                          Instances For
                            @[specialize #[]]
                            def Lean.Meta.LazyDiscrTree.MatchResult.appendResultsAux {α : Type} {β : Type u_1} (mr : MatchResult α) (a : Array β) (f : Natαβ) :

                            Append results to array

                            Equations
                              Instances For
                                Equations
                                  Instances For

                                    Find values that match e in d.

                                    The results are ordered so that the longest matches in terms of number of non-star keys are first with ties going to earlier operators first.

                                    Equations
                                      Instances For

                                        Initial entry in lazy discrimination tree

                                        Instances For
                                          def Lean.Meta.LazyDiscrTree.InitEntry.fromExpr {α : Type} (expr : Expr) (value : α) :

                                          Constructs an initial entry from an expression and value.

                                          Equations
                                            Instances For
                                              def Lean.Meta.LazyDiscrTree.InitEntry.mkSubEntry {α : Type} (e : InitEntry α) (idx : Nat) (value : α) :

                                              Creates an entry for a subterm of an initial entry.

                                              This is slightly more efficient than using fromExpr on subterms since it avoids a redundant call to whnf.

                                              Equations
                                                Instances For
                                                  Equations
                                                    Instances For
                                                      Equations
                                                        Instances For
                                                          def Lean.Meta.LazyDiscrTree.createImportedDiscrTree {m : TypeType} {α : Type} [Monad m] [MonadLog m] [AddMessageContext m] [MonadOptions m] [MonadLiftT BaseIO m] (cctx : Core.Context) (ngen : NameGenerator) (env : Environment) (act : NameConstantInfoMetaM (Array (InitEntry α))) (constantsPerTask : Nat := 1000) :

                                                          Create a discriminator tree for imported environment.

                                                          Equations
                                                            Instances For
                                                              @[irreducible]
                                                              def Lean.Meta.LazyDiscrTree.createImportedDiscrTree.go {m : TypeType} {α : Type} [Monad m] [MonadLiftT BaseIO m] (cctx : Core.Context) (env : Environment) (act : NameConstantInfoMetaM (Array (InitEntry α))) (constantsPerTask : Nat := 1000) (n : Nat) (ngen : NameGenerator) (tasks : Array (Task (Lean.Meta.LazyDiscrTree.InitResults✝ α))) (start cnt idx : Nat) :

                                                              Allocate constants to tasks according to constantsPerTask.

                                                              Equations
                                                                Instances For
                                                                  def Lean.Meta.LazyDiscrTree.findImportMatches {α : Type} (ext : EnvExtension (IO.Ref (Option (LazyDiscrTree α)))) (addEntry : NameConstantInfoMetaM (Array (InitEntry α))) (droppedKeys : List (List Key) := []) (constantsPerTask : Nat := 1000) (ty : Expr) :
                                                                  Equations
                                                                    Instances For

                                                                      A discriminator tree for the current module's declarations only.

                                                                      Note. We use different discriminator trees for imported and current module declarations since imported declarations are typically much more numerous but not changed after the environment is created.

                                                                      Instances For

                                                                        Create a discriminator tree for current module declarations.

                                                                        Equations
                                                                          Instances For
                                                                            def Lean.Meta.LazyDiscrTree.createModuleTreeRef {α : Type} (entriesForConst : NameConstantInfoMetaM (Array (InitEntry α))) (droppedKeys : List (List Key)) :

                                                                            Creates reference for lazy discriminator tree that only contains this module's definitions.

                                                                            Equations
                                                                              Instances For

                                                                                Returns candidates from this module in this module that match the expression.

                                                                                • moduleRef is a references to a lazy discriminator tree only containing this module's definitions.
                                                                                Equations
                                                                                  Instances For
                                                                                    def Lean.Meta.LazyDiscrTree.findMatchesExt {α β : Type} (moduleTreeRef : ModuleDiscrTreeRef α) (ext : EnvExtension (IO.Ref (Option (LazyDiscrTree α)))) (addEntry : NameConstantInfoMetaM (Array (InitEntry α))) (droppedKeys : List (List Key) := []) (constantsPerTask : Nat := 1000) (adjustResult : Natαβ) (ty : Expr) :

                                                                                    findMatchesExt searches for entries in a lazily initialized discriminator tree.

                                                                                    It provides some additional capabilities beyond findMatches to adjust results based on priority and cache module declarations

                                                                                    • modulesTreeRef points to the discriminator tree for local environment. Used for caching and created by createLocalTree.
                                                                                    • ext should be an environment extension with an IO.Ref for caching the import lazy discriminator tree.
                                                                                    • addEntry is the function for creating discriminator tree entries from constants.
                                                                                    • droppedKeys contains keys we do not want to consider when searching for matches. It is used for dropping very general keys.
                                                                                    • constantsPerTask stores number of constants in imported modules used to decide when to create new task.
                                                                                    • adjustResult takes the priority and value to produce a final result.
                                                                                    • ty is the expression type.
                                                                                    Equations
                                                                                      Instances For
                                                                                        def Lean.Meta.LazyDiscrTree.findMatches {α : Type} (ext : EnvExtension (IO.Ref (Option (LazyDiscrTree α)))) (addEntry : NameConstantInfoMetaM (Array (InitEntry α))) (droppedKeys : List (List Key) := []) (constantsPerTask : Nat := 1000) (ty : Expr) :

                                                                                        findMatches searches for entries in a lazily initialized discriminator tree.

                                                                                        • ext should be an environment extension with an IO.Ref for caching the import lazy discriminator tree.
                                                                                        • addEntry is the function for creating discriminator tree entries from constants.
                                                                                        • droppedKeys contains keys we do not want to consider when searching for matches. It is used for dropping very general keys.
                                                                                        Equations
                                                                                          Instances For