Documentation

Linglib.Semantics.Mood.Defs

Mood Categories #

A clause carries two independent mood dimensions: an illocutionary force (the speech-act type — the F in F(p)) and a grammatical mood (the indicative/subjunctive verb morphology). The dimensions cross freely ([Hol16]): a polar question is [interrogative, indicative], while the Spanish deliberative "¿Que duerma?" is [interrogative, subjunctive]. This file defines the two category enums, their pairing ClauseType, the mood-selection classes of embedding predicates, and the bridge from the UD Mood feature.

Main declarations #

The Searle-class and direction-of-fit API for Illocutionary is in Discourse/SpeechAct.lean.

Grammatical mood #

Grammatical (verb-morphological) mood.

Instances For
    @[implicit_reducible]
    Equations
    def Mood.instReprGrammatical.repr :
    GrammaticalStd.Format
    Equations
    Instances For
      @[implicit_reducible]
      Equations

      The subjunctive functions that individual languages grammaticalize.

      Instances For
        @[implicit_reducible]
        Equations
        Equations
        • One or more equations did not get rendered due to their size.
        Instances For

          Illocutionary force #

          Illocutionary mood: the speech-act force of an utterance — the F in F(p).

          Instances For
            @[implicit_reducible]
            Equations
            Equations
            • One or more equations did not get rendered due to their size.
            Instances For

              Clause type: force × mood #

              ForceMoodExample
              declarativeindicative"John sleeps."
              declarativesubjunctive"Long live the king!"
              interrogativeindicative"Does John sleep?"
              interrogativesubjunctive"¿Que duerma?" (Sp. deliberative)
              imperative"Sleep!" (mood often neutralized)

              A clause type: the independent pairing of illocutionary force with grammatical mood ([Hol16], [Riz97]).

              • The illocutionary force: the speech act performed.

              • The grammatical mood: verb morphology.

              Instances For
                def Mood.instDecidableEqClauseType.decEq (x✝ x✝¹ : ClauseType) :
                Decidable (x✝ = x✝¹)
                Equations
                Instances For
                  def Mood.instReprClauseType.repr :
                  ClauseTypeStd.Format
                  Equations
                  • One or more equations did not get rendered due to their size.
                  Instances For
                    @[implicit_reducible]
                    Equations

                    A standard declarative-indicative clause.

                    Equations
                    Instances For

                      A standard polar question (interrogative-indicative).

                      Equations
                      Instances For

                        The epistemic authority of a clause type, via its force.

                        Equations
                        Instances For

                          Mood components #

                          inductive Mood.Component :

                          The component of the mood state that a mood-bearing object operates on ([Por18], Ch. 4).

                          • informational : Component

                            The information coordinate (State.info).

                          • preferential : Component

                            The ordering coordinate (State.order).

                          • inquisitive : Component

                            The inquiry coordinate (State.inquiry).

                          Instances For
                            @[implicit_reducible]
                            Equations
                            @[implicit_reducible]
                            Equations
                            def Mood.instReprComponent.repr :
                            ComponentStd.Format
                            Equations
                            Instances For
                              class Mood.HasTarget (M : Type u_1) :
                              Type u_1

                              The class of mood-bearing types: target m is the component the context selecting m quantifies over, not an operation m performs.

                              Instances
                                @[implicit_reducible]

                                Sentence-mood targets ([Por18], Ch. 3). Promissive and exclamative are linglib extensions; the exclamative assignment conflicts with its null direction of fit (Discourse/SpeechAct.lean) and is a conjectural placeholder.

                                Equations
                                • One or more equations did not get rendered due to their size.

                                Mood selection by predicate class #

                                inductive Mood.Selector :

                                The mood-selection class of an embedding predicate; the projection onto the semantic operators is Selector.toVerbalOp (Semantics/Mood/Verbal.lean).

                                • indicativeSelecting : Selector

                                  Indicative-selecting: know, see, believe.

                                • subjunctiveSelecting : Selector

                                  Robustly subjunctive-selecting: want, wish, demand, intend.

                                • crossLinguisticallyVariable : Selector

                                  Variable across languages: hope, expect ([Gra24], Table 1).

                                • moodNeutral : Selector

                                  Pragmatically flexible: say, think.

                                Instances For
                                  @[implicit_reducible]
                                  Equations
                                  @[implicit_reducible]
                                  Equations
                                  def Mood.instReprSelector.repr :
                                  SelectorStd.Format
                                  Equations
                                  Instances For

                                    Bridge to UD.Mood #