Documentation

Lean.Elab.Tactic.Simp

Configuration for simp, for supporting tactic configuration option syntax.

Instances For

    Configuration for dsimp, for supporting tactic configuration option syntax.

    Instances For
      Instances For
        Instances For
          Instances For
            @[implicit_reducible]

            Implement a simp discharge function using the given tactic syntax code. Recall that simp dischargers are in SimpM which does not have access to Term.State. We need access to Term.State to store messages and update the info tree. Thus, we create an IO.ref to track these changes at Term.State when we execute tacticCode. We must set this reference with the current Term.State before we execute simp using the generated Simp.Discharge.

            Instances For
              Instances For

                The result of elaborating a single simp argument

                Instances For

                  The result of elaborating a full array of simp arguments and applying them to the simp context.

                  Instances For
                    def Lean.Elab.Tactic.elabSimpArgs (stx : Syntax) (ctx : Meta.Simp.Context) (simprocs : Meta.Simp.SimprocsArray) (eraseLocal : Bool) (kind : SimpKind) (ignoreStarArg : Bool := false) :

                    Elaborate extra simp theorems provided to simp. stx is of the form "[" simpTheorem,* "]" If eraseLocal == true, then we consider local declarations when resolving names for erased theorems (- id), this option only makes sense for simp_all or * is used. When recover := true, try to recover from errors as much as possible so that users keep seeing the current goal.

                    Instances For

                      Position for the [..] child syntax in the simp tactic.

                      Instances For

                        Position for the only child syntax in the simp tactic.

                        Instances For
                          Instances For
                            Instances For
                              def Lean.Elab.Tactic.setSimpParams (stx : TSyntax `tactic) (params : Array Syntax) :
                              TSyntax `tactic
                              Instances For
                                Instances For

                                  Add all definitions from the current file to unfold.

                                  Instances For
                                    def Lean.Elab.Tactic.mkSimpContext (stx : Syntax) (eraseLocal : Bool) (kind : SimpKind := SimpKind.simp) (ignoreStarArg : Bool := false) (simpTheorems : CoreM Meta.SimpTheorems := Meta.getSimpTheorems) :

                                    Create the Simp.Context for the simp, dsimp, and simp_all tactics. If kind != SimpKind.simp, the discharge option must be none

                                    TODO: generate error message if non rfl theorems are provided as arguments to dsimp.

                                    The argument simpTheorems defaults to getSimpTheorems, but allows overriding with an arbitrary mechanism to choose the simp theorems besides those specified in the syntax. Note that if the syntax includes simp only, the simpTheorems argument is ignored.

                                    Instances For
                                      @[inline]

                                      Runs the given action. If it throws a maxRecDepth exception (nested or not), run the loop checking. If it does not throw, run the loop checking only if explicitly enabled.

                                      Instances For

                                        If stx is the syntax of a simp, simp_all or dsimp tactic invocation, and usedSimps is the set of simp lemmas used by this invocation, then mkSimpOnly creates the syntax of an equivalent simp only, simp_all only or dsimp only invocation.

                                        Instances For
                                          Instances For

                                            Checks the simp arguments for unused ones, and stores a bitmask of unused ones in the info tree, to be picked up by the linter. (This indirection is necessary because the same simp syntax may be executed multiple times, and different simp arguments may be used in each step.)

                                            Instances For

                                              simpLocation ctx discharge? varIdToLemmaId loc runs the simplifier at locations specified by loc, using the simp theorems collected in ctx optionally running a discharger specified in discharge? on generated subgoals.

                                              Its primary use is as the implementation of the simp [...] at ... and simp only [...] at ... syntaxes, but can also be used by other tactics when a Syntax is not available.

                                              For many tactics other than the simplifier, one should use the withLocation tactic combinator when working with a location.

                                              Instances For

                                                The following parsers for simp arguments are not actually used at present in the implementation of simp above, but are useful for further tactics which need to parse simp arguments.

                                                Extract the arguments from a simpArgs syntax as an array of syntaxes

                                                Instances For

                                                  Extract the arguments from a dsimpArgs syntax as an array of syntaxes

                                                  Instances For