Documentation

Linglib.Semantics.Mood.ClauseType

Clause Type: Force × Mood #

[Hol16] [Riz97]

A clause type is a pair of independent dimensions:

These are orthogonal — [Hol16]'s analysis requires both: a polar question is [interrogative, indicative], while a deliberative subjunctive question is [interrogative, subjunctive].

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

ClauseType lives in Semantics/Mood/ because the file is intrinsically about the mood-category cross-product. The discourse-act extensions of force (Searle classes, direction of fit, preparatory conditions) live in Discourse/SpeechAct.lean.

A clause's type: the independent pairing of illocutionary force with grammatical mood.

Instances For
    def Semantics.Mood.instDecidableEqClauseType.decEq (x✝ x✝¹ : ClauseType) :
    Decidable (x✝ = x✝¹)
    Equations
    Instances For
      Equations
      • One or more equations did not get rendered due to their size.
      Instances For

        Force and mood are independent: changing one doesn't change the other.

        Map from ClauseType to epistemic authority (via force, ignoring mood).

        Equations
        Instances For

          Project a UD.Mood feature value to a Semantics.Mood.ClauseType.

          UD.Mood is a flat enum that conflates illocutionary force (Imp, Jus, Adm) with grammatical mood (Ind, Sub) with finer irrealis subtypes (Cnd, Opt, Pot, Nec, Irr). The bridge picks the most defensible default cross-product:

          UD.Moodforcemood
          Inddeclarativeindicative
          Subdeclarativesubjunctive
          Impimperativeindicative
          Cnddeclarativesubjunctive
          Optdeclarativesubjunctive
          Jusimperativesubjunctive
          Potdeclarativesubjunctive
          Qotdeclarativeindicative
          Admexclamativeindicative
          Necdeclarativesubjunctive
          Irrdeclarativesubjunctive

          The mapping is non-injective by design — UD.Mood draws finer distinctions on the irrealis side than (force × mood) records.

          Equations
          Instances For

            The UD Sub mood projects to subjunctive grammatical mood.