Illocutionary Mood — the Speech-Act Force Category #
The category of speech-act force a clause is associated with: declarative, interrogative, imperative, promissive, exclamative. This is the F in F(p).
Distinct from:
Semantics.Mood.GramMood(indicative/subjunctive morphology — seeBasic.lean)SpeasTenny2003.SAPMood(Speas & Tenny's 2×2 configuration)
The pair (IllocutionaryMood, GramMood) is Semantics.Mood.ClauseType.
This file contains only the category — the enum + its sole intrinsic
property moodAuthority (which participant has epistemic authority). The
act-side extensions (Searle classes, direction of fit, preparatory
conditions) live in Discourse/SpeechAct.lean, which imports
this file. The split keeps Semantics/Mood/ framework-agnostic and free of
pragmatic-act commitments.
The DiscourseRole type lives in Discourse/Roles.lean because it is
about discourse participants (speaker/addressee), not about mood.
Illocutionary mood — the speech-act force of an utterance.
Distinct from GramMood (indicative/subjunctive morphology) and the
Minimalist SAPMood (configurational). This classifies the pragmatic
act performed — the F in F(p).
- declarative : IllocutionaryMood
- interrogative : IllocutionaryMood
- imperative : IllocutionaryMood
- promissive : IllocutionaryMood
- exclamative : IllocutionaryMood
Instances For
Equations
- Semantics.Mood.instDecidableEqIllocutionaryMood x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Equations
Equations
- One or more equations did not get rendered due to their size.
Which participant holds epistemic authority for a given illocutionary mood.
[Lak70]: in declaratives, imperatives, and promissives the speaker is the seat of knowledge; in interrogatives the addressee is.
Equations
- Semantics.Mood.moodAuthority Semantics.Mood.IllocutionaryMood.declarative = Discourse.DiscourseRole.speaker
- Semantics.Mood.moodAuthority Semantics.Mood.IllocutionaryMood.interrogative = Discourse.DiscourseRole.addressee
- Semantics.Mood.moodAuthority Semantics.Mood.IllocutionaryMood.imperative = Discourse.DiscourseRole.speaker
- Semantics.Mood.moodAuthority Semantics.Mood.IllocutionaryMood.promissive = Discourse.DiscourseRole.speaker
- Semantics.Mood.moodAuthority Semantics.Mood.IllocutionaryMood.exclamative = Discourse.DiscourseRole.speaker