Documentation

Aesop.Forward.Match

Elaborate the term of a forward rule in the current goal.

Instances For
    def Aesop.Match.initial (subst : Substitution) (isPatSubst : Bool) (forwardDeps conclusionDeps : Array PremiseIndex) :

    Create a one-element match. subst is the substitution that results from matching a hypothesis against slot 0, or from a pattern substitution. isPatSubst is true if the substitution resulted from a rule pattern. forwardDeps are the forward dependencies of slot 0. conclusionDeps are the conclusion dependencies of the rule to which this match belongs.

    Instances For
      def Aesop.Match.addHypOrPatSubst (subst : Substitution) (isPatSubst : Bool) (forwardDeps : Array PremiseIndex) (m : Match) :

      Add a hyp or pattern substitution to the match. subst is the substitution that results from matching a hypothesis against slot m.level + 1, or from the pattern. isPatSubst is true if the substitution resulted from a pattern substitution. forwardDeps are the forward dependencies of slot m.level + 1.

      Instances For

        Returns true if the match contains the given hyp.

        Instances For

          Returns true if the match contains the given pattern substitution.

          Instances For

            Given a complete match m for r, get arguments to r contained in the match's slots and substitution. For non-immediate arguments, we return none. The returned levels are suitable assignments for the level mvars of r.

            Instances For
              def Aesop.ForwardRuleMatch.foldHypsM {M : Type u_1 → Type u_2} {σ : Type u_1} [Monad M] (f : σLean.FVarIdM σ) (init : σ) (m : ForwardRuleMatch) :
              M σ

              Fold over the hypotheses contained in a match.

              Instances For
                def Aesop.ForwardRuleMatch.foldHyps {σ : Type u_1} (f : σLean.FVarIdσ) (init : σ) (m : ForwardRuleMatch) :
                σ

                Fold over the hypotheses contained in a match.

                Instances For

                  Returns true if any hypothesis contained in m satisfies f.

                  Instances For

                    Get the hypotheses from the match whose types are propositions.

                    Instances For

                      Construct the proof of the new hypothesis represented by m.

                      Instances For

                        Apply a forward rule match to a goal. This adds the hypothesis corresponding to the match to the local context. Returns the new goal, the added hypothesis and the hypotheses that were removed (if any). Hypotheses may be removed if the match is for a destruct rule. If skipExistingProps is true, propositional hypotheses are not added if another hypothesis with the same type is already present in the goal.

                        Instances For

                          Convert forward rule matches to norm rules. Fails if any of the matches is not a norm rule match.

                          Instances For

                            Convert forward rule matches to safe rules. Fails if any of the matches is not a safe rule match.

                            Instances For

                              Convert forward rule matches to unsafe rules. Fails if any of the matches is not an unsafe rule match.

                              Instances For