mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-14 07:19:31 -06:00
1273 lines
41 KiB
Plaintext
1273 lines
41 KiB
Plaintext
--# -path=.:../../prelude
|
|
|
|
--1 A Small English Resource Syntax
|
|
--
|
|
-- Aarne Ranta 2002
|
|
--
|
|
-- This resource grammar contains definitions needed to construct
|
|
-- indicative, interrogative, and imperative sentences in English.
|
|
--
|
|
-- The following files are presupposed:
|
|
|
|
resource SyntaxEng = MorphoEng ** open Prelude, (CO = Coordination) in {
|
|
|
|
--2 Common Nouns
|
|
--
|
|
-- Simple common nouns are defined as the type $CommNoun$ in $morpho.Deu.gf$.
|
|
|
|
--3 Common noun phrases
|
|
|
|
-- To the common nouns of morphology,
|
|
-- we add natural gender (human/nonhuman) which is needed in syntactic
|
|
-- combinations (e.g. "man who runs" - "program which runs").
|
|
|
|
oper
|
|
CommNoun = CommonNoun ** {g : Gender} ;
|
|
|
|
CommNounPhrase = CommNoun ;
|
|
|
|
noun2CommNounPhrase : CommNoun -> CommNounPhrase = \man ->
|
|
man ;
|
|
|
|
cnGen : CommonNoun -> Gender -> CommNoun = \cn,g ->
|
|
cn ** {g = g} ;
|
|
|
|
cnHum : CommonNoun -> CommNoun = \cn ->
|
|
cnGen cn Hum ;
|
|
cnNoHum : CommonNoun -> CommNoun = \cn ->
|
|
cnGen cn NoHum ;
|
|
|
|
--2 Noun phrases
|
|
--
|
|
-- The worst case is pronouns, which have inflection in the possessive forms.
|
|
-- Proper names are a special case.
|
|
|
|
NounPhrase : Type = Pronoun ;
|
|
|
|
nameNounPhrase : ProperName -> NounPhrase = \john ->
|
|
{s = \\c => john.s ! toCase c ; n = Sg ; p = P3} ;
|
|
|
|
nameNounPhrasePl : ProperName -> NounPhrase = \john ->
|
|
{s = \\c => john.s ! toCase c ; n = Pl ; p = P3} ;
|
|
|
|
-- The following construction has to be refined for genitive forms:
|
|
-- "we two", "us two" are OK, but "our two" is not.
|
|
|
|
Numeral : Type = {s : Case => Str} ;
|
|
|
|
pronWithNum : Pronoun -> Numeral -> Pronoun = \we,two ->
|
|
{s = \\c => we.s ! c ++ two.s ! toCase c ; n = we.n ; p = we.p} ;
|
|
|
|
noNum : Numeral = {s = \\_ => []} ;
|
|
|
|
|
|
--2 Determiners
|
|
--
|
|
-- Determiners are inflected according to the nouns they determine.
|
|
-- The determiner is not inflected.
|
|
|
|
Determiner : Type = {s : Str ; n : Number} ;
|
|
|
|
detNounPhrase : Determiner -> CommNounPhrase -> NounPhrase = \every, man ->
|
|
{s = \\c => every.s ++ man.s ! every.n ! toCase c ;
|
|
n = every.n ;
|
|
p = P3
|
|
} ;
|
|
|
|
mkDeterminer : Number -> Str -> Determiner = \n,the ->
|
|
mkDeterminerNum n the noNum ;
|
|
|
|
mkDeterminerNum : Number -> Str -> Numeral -> Determiner = \n,det,two ->
|
|
{s = det ++ two.s ! Nom ;
|
|
n = n
|
|
} ;
|
|
|
|
everyDet = mkDeterminer Sg "every" ;
|
|
allDet = mkDeterminerNum Pl "all" ;
|
|
mostDet = mkDeterminer Pl "most" ;
|
|
aDet = mkDeterminer Sg artIndef ;
|
|
plDet = mkDeterminerNum Pl [] ;
|
|
theSgDet = mkDeterminer Sg "the" ;
|
|
thePlDet = mkDeterminerNum Pl "the" ;
|
|
anySgDet = mkDeterminer Sg "any" ;
|
|
anyPlDet = mkDeterminerNum Pl "any" ;
|
|
|
|
whichSgDet = mkDeterminer Sg "which" ;
|
|
whichPlDet = mkDeterminerNum Pl "which" ;
|
|
|
|
whichDet = whichSgDet ; --- API
|
|
|
|
indefNoun : Number -> CommNoun -> Str = \n,man ->
|
|
(indefNounPhrase n man).s ! NomP ;
|
|
|
|
indefNounPhrase : Number -> CommNounPhrase -> NounPhrase = \n ->
|
|
indefNounPhraseNum n noNum ;
|
|
|
|
indefNounPhraseNum : Number -> Numeral ->CommNounPhrase -> NounPhrase =
|
|
\n,two,man ->
|
|
{s = \\c => case n of {
|
|
Sg => artIndef ++ two.s ! Nom ++ man.s ! n ! toCase c ;
|
|
Pl => two.s ! Nom ++ man.s ! n ! toCase c
|
|
} ;
|
|
n = n ; p = P3
|
|
} ;
|
|
|
|
defNounPhrase : Number -> CommNounPhrase -> NounPhrase = \n ->
|
|
defNounPhraseNum n noNum ;
|
|
defNounPhraseNum : Number -> Numeral -> CommNounPhrase -> NounPhrase =
|
|
\n,two,car ->
|
|
{s = \\c => artDef ++ two.s ! Nom ++ car.s ! n ! toCase c ;
|
|
n = n ;
|
|
p = P3
|
|
} ;
|
|
|
|
-- Genitives of noun phrases can be used like determiners, to build noun phrases.
|
|
-- The number argument makes the difference between "my house" - "my houses".
|
|
--
|
|
-- We have the variation "the car of John / the car of John's / John's car"
|
|
|
|
npGenDet : Number -> Numeral -> NounPhrase -> CommNounPhrase -> NounPhrase =
|
|
\n,two,john,car ->
|
|
{s = \\c => variants {
|
|
artDef ++ two.s ! Nom ++ car.s ! n ! Nom ++ "of" ++ john.s ! GenSP ;
|
|
john.s ! GenP ++ two.s ! Nom ++ car.s ! n ! toCase c
|
|
} ;
|
|
n = n ;
|
|
p = P3
|
|
} ;
|
|
|
|
-- *Bare plural noun phrases* like "men", "good cars", are built without a
|
|
-- determiner word.
|
|
|
|
plurDet : CommNounPhrase -> NounPhrase = \cn ->
|
|
{s = \\c => cn.s ! plural ! toCase c ;
|
|
p = P3 ;
|
|
n = Pl
|
|
} ;
|
|
|
|
-- Constructions like "the idea that two is even" are formed at the
|
|
-- first place as common nouns, so that one can also have "a suggestion that...".
|
|
|
|
nounThatSentence : CommNounPhrase -> SS -> CommNounPhrase = \idea,x ->
|
|
{s = \\n,c => idea.s ! n ! c ++ "that" ++ x.s ;
|
|
g = idea.g
|
|
} ;
|
|
|
|
|
|
--2 Adjectives
|
|
--
|
|
-- Adjectival phrases have a parameter $p$ telling if they are prefixed ($True$) or
|
|
-- postfixed (complex APs).
|
|
|
|
AdjPhrase : Type = Adjective ** {p : Bool} ;
|
|
|
|
adj2adjPhrase : Adjective -> AdjPhrase = \new -> new ** {p = True} ;
|
|
|
|
simpleAdjPhrase : Str -> AdjPhrase = \French ->
|
|
adj2adjPhrase (regAdjective French) ;
|
|
|
|
|
|
--3 Comparison adjectives
|
|
--
|
|
-- Each of the comparison forms has a characteristic use:
|
|
--
|
|
-- Positive forms are used alone, as adjectival phrases ("big").
|
|
|
|
positAdjPhrase : AdjDegr -> AdjPhrase = \big ->
|
|
adj2adjPhrase {s = big.s ! Pos} ;
|
|
|
|
-- Comparative forms are used with an object of comparison, as
|
|
-- adjectival phrases ("bigger then you").
|
|
|
|
comparAdjPhrase : AdjDegr -> NounPhrase -> AdjPhrase = \big, you ->
|
|
{s = \\a => big.s ! Comp ! a ++ "than" ++ you.s ! NomP ;
|
|
p = False
|
|
} ;
|
|
|
|
-- Superlative forms are used with a modified noun, picking out the
|
|
-- maximal representative of a domain ("the biggest house").
|
|
|
|
superlNounPhrase : AdjDegr -> CommNoun -> NounPhrase = \big, house ->
|
|
{s = \\c => "the" ++ big.s ! Sup ! AAdj ++ house.s ! Sg ! toCase c ;
|
|
n = Sg ;
|
|
p = P3
|
|
} ;
|
|
|
|
-- Moreover, superlatives can be used alone as adjectival phrases
|
|
-- ("the youngest" - in free variation).
|
|
|
|
superlAdjPhrase : AdjDegr -> AdjPhrase = \big ->
|
|
{s = \\a => "the" ++ big.s ! Sup ! a ;
|
|
p = True
|
|
} ;
|
|
|
|
--3 Two-place adjectives
|
|
--
|
|
-- A two-place adjective is an adjective with a preposition used before
|
|
-- the complement.
|
|
|
|
Preposition = Str ;
|
|
|
|
AdjCompl = Adjective ** {s2 : Preposition} ;
|
|
|
|
complAdj : AdjCompl -> NounPhrase -> AdjPhrase = \related,john ->
|
|
{s = \\a => related.s ! a ++ related.s2 ++ john.s ! AccP ;
|
|
p = False
|
|
} ;
|
|
|
|
|
|
--3 Modification of common nouns
|
|
--
|
|
-- The two main functions of adjective are in predication ("John is old")
|
|
-- and in modification ("an old man"). Predication will be defined
|
|
-- later, in the chapter on verbs.
|
|
--
|
|
-- Modification must pay attention to pre- and post-noun
|
|
-- adjectives: "big car"/"car bigger than X"
|
|
|
|
modCommNounPhrase : AdjPhrase -> CommNounPhrase -> CommNounPhrase = \big, car ->
|
|
{s = \\n => if_then_else (Case => Str) big.p
|
|
(\\c => big.s ! AAdj ++ car.s ! n ! c)
|
|
(table {Nom => car.s ! n ! Nom ++ big.s ! AAdj ; Gen => variants {}}) ;
|
|
g = car.g
|
|
} ;
|
|
|
|
|
|
--2 Function expressions
|
|
|
|
-- A function expression is a common noun together with the
|
|
-- preposition prefixed to its argument ("mother of x").
|
|
-- The type is analogous to two-place adjectives and transitive verbs.
|
|
|
|
Function = CommNounPhrase ** {s2 : Preposition} ;
|
|
|
|
-- The application of a function gives, in the first place, a common noun:
|
|
-- "mother/mothers of John". From this, other rules of the resource grammar
|
|
-- give noun phrases, such as "the mother of John", "the mothers of John",
|
|
-- "the mothers of John and Mary", and "the mother of John and Mary" (the
|
|
-- latter two corresponding to distributive and collective functions,
|
|
-- respectively). Semantics will eventually tell when each
|
|
-- of the readings is meaningful.
|
|
|
|
appFunComm : Function -> NounPhrase -> CommNounPhrase = \mother,john ->
|
|
{s = \\n => table {
|
|
Gen => nonExist ; --- ?
|
|
_ => mother.s ! n ! Nom ++ mother.s2 ++ john.s ! GenSP
|
|
} ;
|
|
g = mother.g
|
|
} ;
|
|
|
|
-- It is possible to use a function word as a common noun; the semantics is
|
|
-- often existential or indexical.
|
|
|
|
funAsCommNounPhrase : Function -> CommNounPhrase =
|
|
noun2CommNounPhrase ;
|
|
|
|
-- The following is an aggregate corresponding to the original function application
|
|
-- producing "John's mother" and "the mother of John". It does not appear in the
|
|
-- resource grammar API any longer.
|
|
|
|
appFun : Bool -> Function -> NounPhrase -> NounPhrase = \coll, mother,john ->
|
|
let {n = john.n ; nf = if_then_else Number coll Sg n} in
|
|
variants {
|
|
defNounPhrase nf (appFunComm mother john) ;
|
|
npGenDet nf noNum john mother
|
|
} ;
|
|
|
|
-- The commonest case is functions with the preposition "of".
|
|
|
|
funOf : CommNoun -> Function = \mother ->
|
|
mother ** {s2 = "of"} ;
|
|
|
|
funOfReg : Str -> Gender -> Function = \mother,g ->
|
|
funOf (nounReg mother ** {g = g}) ;
|
|
|
|
-- Two-place functions add one argument place.
|
|
|
|
Function2 = Function ** {s3 : Preposition} ;
|
|
|
|
-- There application starts by filling the first place.
|
|
|
|
appFun2 : Function2 -> NounPhrase -> Function = \train, paris ->
|
|
{s = \\n,c => train.s ! n ! c ++ train.s2 ++ paris.s ! AccP ;
|
|
g = train.g ;
|
|
s2 = train.s3
|
|
} ;
|
|
|
|
|
|
--2 Verbs
|
|
--
|
|
--3 Verb phrases
|
|
--
|
|
-- The syntactic verb phrase form type, which includes compound tenses,
|
|
-- is defined as follows.
|
|
|
|
param
|
|
|
|
Tense = Present | Past ;
|
|
Anteriority = Simul | Anter ;
|
|
Order = Direct | Indirect ;
|
|
SForm =
|
|
VIndic Tense Anteriority Number Person
|
|
| VFut Anteriority
|
|
| VCondit Anteriority
|
|
| VQuest Tense Number Person --- needed for "do" inversions
|
|
| VImperat
|
|
| VInfinit Anteriority
|
|
;
|
|
|
|
-- This is how the syntactic verb phrase forms are realized as
|
|
-- inflectional forms of verbs.
|
|
|
|
oper
|
|
|
|
verbSForm : Verb -> SForm -> {fin,inf : Str} = \goes,sf ->
|
|
let
|
|
tense : Tense -> Number -> Person -> VForm = \t,n,p -> case <t,n,p> of {
|
|
<Present,Sg,_> => Indic p ;
|
|
<Present,_,_> => Indic P2 ;
|
|
<Past,Sg,P2> => Pastt Pl ;
|
|
<Past,_,_> => Pastt n
|
|
} ;
|
|
have : Tense -> Number -> Person -> Str = \t,n,p -> case <t,n,p> of {
|
|
<Present,Sg,P3> => "has" ;
|
|
<Present,_,_> => "have" ;
|
|
<Past,_,_> => "had"
|
|
} ;
|
|
do : Tense -> Number -> Person -> Str = \t,n,p -> case <t,n,p> of {
|
|
<Present,Sg,P3> => "does" ;
|
|
<Present,_,_> => "do" ;
|
|
<Past,_,_> => "did"
|
|
} ;
|
|
simple : VForm -> {fin,inf : Str} = \v -> {
|
|
fin = goes.s ! v ;
|
|
inf = []
|
|
} ;
|
|
compound : Str -> Str -> {fin,inf : Str} = \x,y -> {
|
|
fin = x ;
|
|
inf = y
|
|
} ;
|
|
go : Str = goes.s ! InfImp ;
|
|
gone : Str = goes.s ! PPart
|
|
in case sf of {
|
|
VIndic t Simul n p => simple (tense t n p) ;
|
|
VIndic t Anter n p => compound (have t n p) gone ;
|
|
VQuest t n p => compound (do Present n p) go ;
|
|
VFut Simul => compound "will" go ;
|
|
VFut Anter => compound "will" ("have" ++ gone) ;
|
|
VCondit Simul => compound "would" go ;
|
|
VCondit Anter => compound "would" ("have" ++ gone) ;
|
|
VImperat => simple InfImp ;
|
|
VInfinit Simul => simple InfImp ;
|
|
VInfinit Anter => compound "have" gone
|
|
} ;
|
|
|
|
useVerb : Verb -> (Number => Str) -> VerbGroup = \verb,arg ->
|
|
let
|
|
go = verbSForm verb ;
|
|
off = verb.s1 ;
|
|
has : SForm => Str = \\f => (go f).fin ;
|
|
gone : SForm => Str = \\f => (go f).inf ++ off
|
|
in {
|
|
s = table {
|
|
True => has ;
|
|
False => table {
|
|
VIndic t Simul n p => auxDo t n p ;
|
|
VImperat => auxDo Present Sg P2 ;
|
|
VInfinit a => "not" ++ has ! VInfinit a ;
|
|
vf => has ! vf
|
|
}
|
|
} ;
|
|
s2 = table {
|
|
True => gone ;
|
|
False => table {
|
|
VIndic t Simul n p => "not" ++ has ! VInfinit Simul ++ off ;
|
|
VImperat => "not" ++ has ! VInfinit Simul ++ off ;
|
|
VInfinit a => gone ! VInfinit a ;
|
|
vf => "not" ++ gone ! vf
|
|
}
|
|
} ;
|
|
s3 = arg ;
|
|
isAux = False
|
|
} ;
|
|
|
|
useVerbAux : Verb -> (Number => Str) -> VerbGroup = \verb,arg ->
|
|
let
|
|
go = verbSForm verb ;
|
|
has : SForm => Str = \\f => (go f).fin ;
|
|
gone : SForm => Str = \\f => (go f).inf
|
|
in {
|
|
s = \\b =>
|
|
table {
|
|
VQuest t n p => has ! VIndic t Simul n p ; --- undo "do" inversion
|
|
vf => has ! vf
|
|
} ;
|
|
s2 = \\b => let not = if_then_Str b [] "not" in
|
|
table {
|
|
VQuest t n p => not ++ gone ! VIndic t Simul n p ;
|
|
vf => not ++ gone ! vf
|
|
} ;
|
|
s3 = arg ;
|
|
isAux = True
|
|
} ;
|
|
|
|
auxDo : Tense -> Number -> Person -> Str = \t,n,p -> case <t,n,p> of {
|
|
<Present,Sg,P3> => "does" ;
|
|
<Present,_,_> => "do" ;
|
|
<Past,_,_> => "did"
|
|
} ;
|
|
|
|
beGroup : (Number => Str) -> VerbGroup =
|
|
useVerbAux (verbBe ** {s1 = []}) ;
|
|
|
|
---- TODO: the contracted forms.
|
|
|
|
-- Verb phrases are discontinuous: the three parts of a verb phrase are
|
|
-- (s) an inflected verb, (s2) infinitive or participle, and (s3) complement.
|
|
-- For instance: "doesn't" - "walk" - ""; "hasn't" - "been" - "old".
|
|
-- There's also a parameter telling if the verb is an auxiliary:
|
|
-- this is needed in question.
|
|
|
|
VerbGroup = {
|
|
s : Bool => SForm => Str ;
|
|
s2 : Bool => SForm => Str ;
|
|
s3 : Number => Str ;
|
|
isAux : Bool
|
|
} ;
|
|
|
|
VerbPhrase = {
|
|
s : Str ;
|
|
s2 : Str ;
|
|
s3 : Number => Str ;
|
|
isAux : Bool ;
|
|
} ;
|
|
|
|
-- All negative verb phrase behave as auxiliary ones in questions.
|
|
|
|
predVerbGroup : Bool -> Anteriority -> VerbGroup -> VerbPhrase = \b,a,vg -> {
|
|
s = vg.s ! b ! VInfinit a ;
|
|
s2 = vg.s2 ! b ! VInfinit a ;
|
|
s3 = vg.s3 ;
|
|
isAux = orB (notB b) vg.isAux
|
|
} ;
|
|
|
|
-- A simple verb can be made into a verb phrase with an empty complement.
|
|
-- There are two versions, depending on if we want to negate the verb.
|
|
-- N.B. negation is *not* a function applicable to a verb phrase, since
|
|
-- double negations with "don't" are not grammatical.
|
|
|
|
predVerb : Verb -> VerbGroup = \walk ->
|
|
useVerb walk (\\_ => []) ;
|
|
|
|
-- Verb phrases can also be formed from adjectives ("is old"),
|
|
-- common nouns ("is a man"), and noun phrases ("ist John").
|
|
-- The third rule is overgenerating: "is every man" has to be ruled out
|
|
-- on semantic grounds.
|
|
|
|
predAdjective : Adjective -> VerbGroup = \old ->
|
|
beGroup (\\_ => old.s ! AAdj) ;
|
|
|
|
predCommNoun : CommNoun -> VerbGroup = \man ->
|
|
beGroup (\\n => indefNoun n man) ;
|
|
|
|
predNounPhrase : NounPhrase -> VerbGroup = \john ->
|
|
beGroup (\\_ => john.s ! NomP) ;
|
|
|
|
predAdverb : PrepPhrase -> VerbGroup = \elsewhere ->
|
|
beGroup (\\_ => elsewhere.s) ;
|
|
|
|
predAdjSent : Adjective -> Sentence -> Clause = \bra,hansover ->
|
|
predVerbGroupClause
|
|
pronIt
|
|
(beGroup (
|
|
\\n => bra.s ! AAdj ++ "that" ++ hansover.s)) ;
|
|
|
|
predAdjSent2 : AdjCompl -> NounPhrase -> Adjective = \bra,han ->
|
|
{s = \\af => bra.s ! af ++ bra.s2 ++ han.s ! AccP} ;
|
|
|
|
|
|
--3 Transitive verbs
|
|
--
|
|
-- Transitive verbs are verbs with a preposition for the complement,
|
|
-- in analogy with two-place adjectives and functions.
|
|
-- One might prefer to use the term "2-place verb", since
|
|
-- "transitive" traditionally means that the inherent preposition is empty.
|
|
-- Such a verb is one with a *direct object*.
|
|
|
|
TransVerb : Type = Verb ** {s3 : Preposition} ;
|
|
|
|
-- The rule for using transitive verbs is the complementization rule.
|
|
-- Particles produce free variation: before or after the complement
|
|
-- ("I switch on the radio" / "I switch the radio on").
|
|
---- TODO: do this again.
|
|
|
|
complTransVerb : TransVerb -> NounPhrase -> VerbGroup = \switch,radio ->
|
|
useVerb switch (\\_ => switch.s3 ++ radio.s ! AccP) ;
|
|
|
|
-- Verbs that take direct object and a particle:
|
|
|
|
mkTransVerbPart : VerbP3 -> Str -> TransVerb = \turn,off ->
|
|
{s = turn.s ; s1 = off ; s3 = []} ;
|
|
|
|
-- Verbs that take prepositional object, no particle:
|
|
|
|
mkTransVerb : VerbP3 -> Str -> TransVerb = \wait,for ->
|
|
{s = wait.s ; s1 = [] ; s3 = for} ;
|
|
|
|
-- Verbs that take direct object, no particle:
|
|
|
|
mkTransVerbDir : VerbP3 -> TransVerb = \love ->
|
|
mkTransVerbPart love [] ;
|
|
|
|
-- Transitive verbs with accusative objects can be used passively.
|
|
-- The function does not check that the verb is transitive.
|
|
-- Therefore, the function can also be used for "he is swum", etc.
|
|
-- The syntax is the same as for adjectival predication.
|
|
|
|
passVerb : Verb -> VerbGroup = \love ->
|
|
predAdjective (adj2adjPhrase (regAdjective (love.s ! PPart))) ;
|
|
|
|
-- Transitive verbs can also be used reflexively.
|
|
-- But to formalize this we must make verb phrases depend on a person parameter.
|
|
|
|
reflTransVerb : TransVerb -> VerbGroup = \love ->
|
|
useVerb love (\\v => love.s1 ++ love.s3 ++ reflPron Sg P3) ; ----
|
|
|
|
-- Transitive verbs can be used elliptically as verbs. The semantics
|
|
-- is left to applications. The definition is trivial, due to record
|
|
-- subtyping.
|
|
|
|
transAsVerb : TransVerb -> Verb = \love ->
|
|
love ;
|
|
|
|
-- *Ditransitive verbs* are verbs with three argument places.
|
|
---- TODO: We treat so far only the rule in which the ditransitive
|
|
---- verb takes both complements to form a verb phrase.
|
|
|
|
DitransVerb = TransVerb ** {s4 : Preposition} ;
|
|
|
|
mkDitransVerb : Verb -> Preposition -> Preposition -> DitransVerb = \v,p1,p2 ->
|
|
v ** {s3 = p1 ; s4 = p2} ;
|
|
|
|
complDitransVerb :
|
|
DitransVerb -> NounPhrase -> TransVerb = \ge,dig ->
|
|
{s = ge.s ;
|
|
s1 = ge.s1 ++ ge.s3 ++ dig.s ! AccP ;
|
|
s3 = ge.s4
|
|
} ;
|
|
-- complDitransVerb : DitransVerb -> NounPhrase -> NounPhrase -> VerbGroup =
|
|
-- \give,you,beer ->
|
|
-- useVerb give
|
|
-- (\\_ => give.s1 ++ give.s3 ++ you.s ! AccP ++ give.s4 ++ beer.s ! AccP) ;
|
|
|
|
complDitransAdjVerb :
|
|
TransVerb -> NounPhrase -> AdjPhrase -> VerbGroup = \gor,dig,sur ->
|
|
useVerb
|
|
gor
|
|
(\\_ => gor.s1 ++ gor.s3 ++ dig.s ! AccP ++
|
|
sur.s ! AAdj) ;
|
|
|
|
complAdjVerb :
|
|
Verb -> AdjPhrase -> VerbGroup = \seut,sur ->
|
|
useVerb
|
|
seut
|
|
(\\n => sur.s ! AAdj ++ seut.s1) ;
|
|
|
|
|
|
--2 Adverbs
|
|
--
|
|
-- Adverbs are not inflected (we ignore comparison, and treat
|
|
-- compared adverbials as separate expressions; this could be done another way).
|
|
-- We distinguish between post- and pre-verbal adverbs.
|
|
|
|
Adverb : Type = SS ** {p : Bool} ;
|
|
|
|
advPre : Str -> Adverb = \seldom -> ss seldom ** {p = False} ;
|
|
advPost : Str -> Adverb = \well -> ss well ** {p = True} ;
|
|
|
|
-- N.B. this rule generates the cyclic parsing rule $VP#2 ::= VP#2$
|
|
-- and cannot thus be parsed.
|
|
|
|
adVerbPhrase : VerbGroup -> Adverb -> VerbGroup = \sings, well ->
|
|
let {postp = orB well.p sings.isAux} in
|
|
{
|
|
s = \\b,sf => (if_then_else Str postp [] well.s) ++ sings.s ! b ! sf ;
|
|
s2 = \\b,sf => sings.s2 ! b ! sf ++ (if_then_else Str postp well.s []) ;
|
|
s3 = sings.s3 ;
|
|
isAux = sings.isAux
|
|
} ;
|
|
|
|
advAdjPhrase : SS -> AdjPhrase -> AdjPhrase = \very, good ->
|
|
{s = \\a => very.s ++ good.s ! a ;
|
|
p = good.p
|
|
} ;
|
|
|
|
-- Adverbials are typically generated by prefixing prepositions.
|
|
-- The rule for creating locative noun phrases by the preposition "in"
|
|
-- is a little shaky, since other prepositions may be preferred ("on", "at").
|
|
|
|
prepPhrase : Preposition -> NounPhrase -> Adverb = \on, it ->
|
|
advPost (on ++ it.s ! AccP) ;
|
|
|
|
locativeNounPhrase : NounPhrase -> Adverb =
|
|
prepPhrase "in" ;
|
|
|
|
PrepPhrase = SS ;
|
|
|
|
-- This is a source of the "man with a telescope" ambiguity, and may produce
|
|
-- strange things, like "cars always" (while "cars today" is OK).
|
|
-- Semantics will have to make finer distinctions among adverbials.
|
|
--
|
|
-- N.B. the genitive case created in this way would not make sense.
|
|
|
|
advCommNounPhrase : CommNounPhrase -> PrepPhrase -> CommNounPhrase = \car,today ->
|
|
{s = \\n => table {
|
|
Nom => car.s ! n ! Nom ++ today.s ;
|
|
Gen => nonExist
|
|
} ;
|
|
g = car.g
|
|
} ;
|
|
|
|
--2 Sentences
|
|
--
|
|
-- Sentences are not inflected in this fragment of English without tense.
|
|
|
|
Sentence : Type = SS ;
|
|
|
|
{- --- obsolete
|
|
-- This is the traditional $S -> NP VP$ rule. It takes care of
|
|
-- agreement between subject and verb. Recall that the VP may already
|
|
-- contain negation.
|
|
|
|
predVerbPhrase : NounPhrase -> VerbPhrase -> Sentence = \john,walks ->
|
|
ss (
|
|
john.s ! NomP ++
|
|
presentIndicative walks john.n john.p
|
|
) ;
|
|
|
|
presentIndicative : VerbPhrase -> Number -> Person -> Str = \sleep,n,p ->
|
|
let
|
|
cf = VIndic Present Simul n p
|
|
in
|
|
sleep.s ! cf ++ sleep.s2 ! cf ++ sleep.s3 ! n ;
|
|
-}
|
|
|
|
adjPastPart : Verb -> Adjective = \verb -> {
|
|
s = \\_ => verb.s ! PPart ++ verb.s1 ---- same Adv form
|
|
} ;
|
|
|
|
reflPron : Number -> Person -> Str = \n,p -> case <n,p> of {
|
|
<Sg,P1> => "myself" ;
|
|
<Sg,P2> => "yourself" ;
|
|
<Sg,P3> => "herself" ; ---- himself
|
|
<Pl,P1> => "ourselves" ;
|
|
<Pl,P2> => "yourselves" ;
|
|
<Pl,P3> => "themselves"
|
|
} ;
|
|
|
|
---- revise; first include pres part in VerbGroup
|
|
progressiveVerbPhrase : VerbPhrase -> VerbGroup = \vp ->
|
|
predAdjective {s = \\_ => vp.s ++ vp.s2 ++ vp.s3 ! Sg ; p = False} ;
|
|
|
|
--3 Tensed clauses
|
|
|
|
param
|
|
|
|
--- would need cleaning up so we wouldn't need this type
|
|
|
|
ClTense = ClPresent | ClPast | ClFuture | ClConditional ;
|
|
|
|
ClForm =
|
|
ClIndic Order Tense Anteriority
|
|
| ClFut Order Anteriority
|
|
| ClCondit Order Anteriority
|
|
| ClInfinit Anteriority -- "naked infinitive" clauses
|
|
;
|
|
|
|
oper
|
|
cl2s : ClForm -> Number -> Person -> {form : SForm ; order : Order} =
|
|
\c,n,p -> case c of {
|
|
ClIndic Indirect t Simul => {form = VQuest t n p ; order = Indirect} ;
|
|
ClIndic o t a => {form = VIndic t a n p ; order = o} ;
|
|
ClFut o a => {form = VFut a ; order = o} ;
|
|
ClCondit o a => {form = VCondit a ; order = o} ;
|
|
ClInfinit a => {form = VInfinit a ; order = Direct} --- order doesn't matter
|
|
} ;
|
|
s2cl : SForm -> Order -> ClForm = \s,o -> case s of {
|
|
VIndic t a _ _ => ClIndic o t a ;
|
|
VInfinit a => ClInfinit a ;
|
|
_ => ClInfinit Simul ---- ??
|
|
} ;
|
|
t2cl : ClTense -> Anteriority -> ClForm = \t,a -> case t of {
|
|
ClPresent => ClIndic Direct Present a ;
|
|
ClPast => ClIndic Direct Past a ;
|
|
ClFuture => ClFut Direct a ;
|
|
ClConditional => ClCondit Direct a
|
|
} ;
|
|
|
|
|
|
Clause = {s : Bool => ClForm => Str} ;
|
|
|
|
predVerbGroupClause : NounPhrase -> VerbGroup -> Clause =
|
|
\yo,sleep -> {
|
|
s = \\b,c =>
|
|
let
|
|
n = yo.n ;
|
|
cfo = cl2s c n yo.p ;
|
|
cf = cfo.form ;
|
|
o = cfo.order ;
|
|
you = yo.s ! NomP ;
|
|
do = sleep.s ! b ! cf ;
|
|
sleeps = sleep.s2 ! b ! cf ++ sleep.s3 ! n
|
|
in
|
|
case o of {
|
|
Direct => you ++ do ++ sleeps ;
|
|
Indirect => do ++ you ++ sleeps
|
|
}
|
|
} ;
|
|
|
|
--3 Sentence-complement verbs
|
|
--
|
|
-- Sentence-complement verbs take sentences as complements.
|
|
|
|
SentenceVerb : Type = Verb ;
|
|
|
|
-- To generate "says that John walks" / "doesn't say that John walks":
|
|
---- TODO: the alternative without "that"
|
|
|
|
complSentVerb : SentenceVerb -> Sentence -> VerbGroup = \say,johnruns ->
|
|
useVerb say (\\_ => "that" ++ johnruns.s) ;
|
|
|
|
complQuestVerb : SentenceVerb -> QuestionSent -> VerbGroup = \se,omduler ->
|
|
useVerb se (\\_ => se.s1 ++ omduler.s ! IndirQ) ;
|
|
|
|
complDitransSentVerb : TransVerb -> NounPhrase -> Sentence -> VerbGroup =
|
|
\sa,honom,duler ->
|
|
useVerb sa
|
|
(\\_ => sa.s1 ++ sa.s3 ++ honom.s ! AccP ++ "that" ++ duler.s) ;
|
|
|
|
complDitransQuestVerb : TransVerb -> NounPhrase -> QuestionSent -> VerbGroup =
|
|
\sa,honom,omduler ->
|
|
useVerb sa
|
|
(\\_ => sa.s1 ++ sa.s3 ++ honom.s ! AccP ++ omduler.s ! IndirQ) ;
|
|
|
|
|
|
--3 Verb-complement verbs
|
|
--
|
|
-- Sentence-complement verbs take verb phrases as complements.
|
|
-- They can be auxiliaries ("can", "must") or ordinary verbs
|
|
-- ("try"); this distinction cannot be done in the multilingual
|
|
-- API and leads to some anomalies in English, such as the necessity
|
|
-- to create the infinitive form "to be able to" for "can" so that
|
|
-- the construction can be iterated, and the corresponding complication
|
|
-- in the parameter structure.
|
|
|
|
VerbVerb : Type = Verb ** {isAux : Bool} ;
|
|
|
|
-- To generate "can walk"/"can't walk"; "tries to walk"/"does not try to walk":
|
|
-- The contraction of "not" is not provided, since it would require changing
|
|
-- the verb parameter type.
|
|
|
|
complVerbVerb : VerbVerb -> VerbPhrase -> VerbGroup = \try,run ->
|
|
let
|
|
taux = try.isAux ;
|
|
to = if_then_Str taux [] "to" ;
|
|
torun : Number => Str =
|
|
\\n => to ++ run.s ++ run.s2 ++ run.s3 ! n
|
|
in
|
|
if_then_else VerbGroup taux
|
|
(useVerb try torun)
|
|
(useVerbAux try torun) ;
|
|
|
|
-- The three most important example auxiliaries.
|
|
|
|
mkVerbAux : (_,_,_,_: Str) -> VerbVerb = \beable, can, could, beenable ->
|
|
{s = table {
|
|
InfImp => beable ;
|
|
Indic _ => can ;
|
|
Pastt _ => could ;
|
|
PPart => beenable ;
|
|
PrepPart => nonExist ---- fix!
|
|
} ;
|
|
s1 = [] ;
|
|
isAux = True
|
|
} ;
|
|
|
|
vvCan : VerbVerb = mkVerbAux ["be able to"] "can" "could" ["been able to"] ;
|
|
vvMust : VerbVerb = mkVerbAux ["have to"] "must" ["had to"] ["had to"] ;
|
|
|
|
-- Notice agreement to object vs. subject:
|
|
|
|
DitransVerbVerb = TransVerb ** {s3 : Str} ;
|
|
|
|
complDitransVerbVerb :
|
|
Bool -> DitransVerbVerb -> NounPhrase -> VerbPhrase -> VerbGroup =
|
|
\obj,be,dig,simma ->
|
|
useVerb be
|
|
(\\n => be.s1 ++ be.s3 ++ dig.s ! AccP ++ be.s3 ++
|
|
simma.s ++ simma.s2 ++
|
|
if_then_Str obj
|
|
(simma.s3 ! dig.n) ---- dig.g ! dig.n ! dig.p)
|
|
(simma.s3 ! n) ---- g ! n ! p)
|
|
) ;
|
|
|
|
transVerbVerb : VerbVerb -> TransVerb -> TransVerb = \vilja,hitta ->
|
|
{s = vilja.s ;
|
|
s1 = vilja.s1 ++ if_then_Str vilja.isAux [] "to" ++
|
|
hitta.s ! InfImp ++ hitta.s1 ;
|
|
s3 = hitta.s3
|
|
} ;
|
|
|
|
complVerbAdj : Adjective -> VerbPhrase -> VerbGroup = \grei, simma ->
|
|
beGroup
|
|
(\\n =>
|
|
grei.s ! AAdj ++
|
|
"to" ++
|
|
simma.s ++ simma.s2 ++
|
|
simma.s3 ! n) ;
|
|
|
|
complVerbAdj2 :
|
|
Bool -> AdjCompl -> NounPhrase -> VerbPhrase -> VerbGroup =
|
|
\obj,grei,dig,simma ->
|
|
beGroup
|
|
(\\n =>
|
|
grei.s ! AAdj ++
|
|
grei.s2 ++ dig.s ! AccP ++
|
|
"to" ++
|
|
simma.s ++ simma.s2 ++
|
|
if_then_Str obj
|
|
(simma.s3 ! dig.n) ---- dig.g ! dig.n ! dig.p)
|
|
(simma.s3 ! n) ---- g ! n ! p)
|
|
) ;
|
|
|
|
|
|
--2 Sentences missing noun phrases
|
|
--
|
|
-- This is one instance of Gazdar's *slash categories*, corresponding to his
|
|
-- $S/NP$.
|
|
-- We cannot have - nor would we want to have - a productive slash-category former.
|
|
-- Perhaps a handful more will be needed.
|
|
--
|
|
-- Notice that the slash category has a similar relation to sentences as
|
|
-- transitive verbs have to verbs: it's like a *sentence taking a complement*.
|
|
-- However, we need something more to distinguish its use in direct questions:
|
|
-- not just "you see" but ("whom") "do you see".
|
|
--
|
|
-- The particle always follows the verb, but the preposition can fly:
|
|
-- "whom you make it up with" / "with whom you make it up".
|
|
--- We reduce the current case to a more general one that has tense variation.
|
|
--- TODO: full tense variation on top level.
|
|
|
|
SentenceSlashNounPhrase = {s : Order => Str ; s2 : Preposition} ;
|
|
ClauseSlashNounPhrase = Clause ** {s2 : Preposition} ;
|
|
|
|
slashTransVerb : Bool -> NounPhrase -> TransVerb -> SentenceSlashNounPhrase =
|
|
\pol,You,lookat ->
|
|
let
|
|
youlookat = slashTransVerbCl You lookat
|
|
in {
|
|
s = \\o => youlookat.s ! pol ! ClIndic o Present Simul ;
|
|
s2 = youlookat.s2
|
|
} ;
|
|
|
|
slashTransVerbCl : NounPhrase -> TransVerb -> ClauseSlashNounPhrase =
|
|
\you,lookat ->
|
|
predVerbGroupClause you (predVerb lookat) ** {s2 = lookat.s3} ;
|
|
|
|
|
|
--2 Relative pronouns and relative clauses
|
|
--
|
|
-- As described in $types.Eng.gf$, relative pronouns are inflected in
|
|
-- gender (human/nonhuman), number, and case.
|
|
--
|
|
-- We get the simple relative pronoun ("who"/"which"/"whom"/"whose"/"that"/$""$)
|
|
-- from $morpho.Eng.gf$.
|
|
|
|
identRelPron : RelPron = relPron ;
|
|
|
|
funRelPron : Function -> RelPron -> RelPron = \mother,which ->
|
|
{s = \\g,n,c => "the" ++ mother.s ! n ! Nom ++
|
|
mother.s2 ++ which.s ! g ! n ! GenSP
|
|
} ;
|
|
|
|
-- An auxiliary that allows the use of predication with relative pronouns.
|
|
|
|
relNounPhrase : RelPron -> Gender -> Number -> NounPhrase = \who,g,n ->
|
|
{s = who.s ! g ! n ; n = n ; p = P3} ;
|
|
|
|
-- Relative clauses can be formed from both verb phrases ("who walks") and
|
|
-- slash expressions ("whom you see", "on which you sit" / "that you sit on").
|
|
|
|
RelClause : Type = {s : Bool => SForm => Gender => Number => Str} ;
|
|
RelSentence : Type = {s : Gender => Number => Str} ;
|
|
|
|
relVerbPhrase : RelPron -> VerbGroup -> RelClause = \who,walks ->
|
|
{s = \\b,sf,g,n =>
|
|
(predVerbGroupClause (relNounPhrase who g n) walks).s ! b ! s2cl sf Direct} ;
|
|
|
|
--- TODO: full tense variation in relative clauses.
|
|
|
|
relSlash : RelPron -> ClauseSlashNounPhrase -> RelClause = \who,yousee ->
|
|
{s = \\b,sf,g,n =>
|
|
let {youSee = yousee.s ! b ! s2cl sf Direct} in
|
|
variants {
|
|
who.s ! g ! n ! AccP ++ youSee ++ yousee.s2 ;
|
|
yousee.s2 ++ who.s ! g ! n ! GenSP ++ youSee
|
|
}
|
|
} ;
|
|
|
|
-- A 'degenerate' relative clause is the one often used in mathematics, e.g.
|
|
-- "number x such that x is even".
|
|
|
|
relSuch : Clause -> RelClause = \A ->
|
|
{s = \\b,sf,_,_ => "such" ++ "that" ++ A.s ! b ! s2cl sf Direct} ;
|
|
|
|
-- The main use of relative clauses is to modify common nouns.
|
|
-- The result is a common noun, out of which noun phrases can be formed
|
|
-- by determiners. No comma is used before these relative clause.
|
|
|
|
modRelClause : CommNounPhrase -> RelSentence -> CommNounPhrase = \man,whoruns ->
|
|
{s = \\n,c => man.s ! n ! c ++ whoruns.s ! man.g ! n ;
|
|
g = man.g
|
|
} ;
|
|
|
|
--2 Interrogative pronouns
|
|
--
|
|
-- If relative pronouns are adjective-like, interrogative pronouns are
|
|
-- noun-phrase-like.
|
|
|
|
IntPron : Type = {s : NPForm => Str ; n : Number} ;
|
|
|
|
-- In analogy with relative pronouns, we have a rule for applying a function
|
|
-- to a relative pronoun to create a new one.
|
|
|
|
funIntPron : Function -> IntPron -> IntPron = \mother,which ->
|
|
{s = \\c => "the" ++ mother.s ! which.n ! Nom ++ mother.s2 ++ which.s ! GenSP ;
|
|
n = which.n
|
|
} ;
|
|
|
|
-- There is a variety of simple interrogative pronouns:
|
|
-- "which house", "who", "what".
|
|
|
|
nounIntPron : Number -> CommNounPhrase -> IntPron = \n, car ->
|
|
{s = \\c => "which" ++ car.s ! n ! toCase c ;
|
|
n = n
|
|
} ;
|
|
|
|
intPronWho : Number -> IntPron = \num -> {
|
|
s = table {
|
|
NomP => "who" ;
|
|
AccP => variants {"who" ; "whom"} ;
|
|
GenP => "whose" ;
|
|
GenSP => "whom"
|
|
} ;
|
|
n = num
|
|
} ;
|
|
|
|
intPronWhat : Number -> IntPron = \num -> {
|
|
s = table {
|
|
GenP => "what's" ;
|
|
_ => "what"
|
|
} ;
|
|
n = num
|
|
} ;
|
|
|
|
|
|
--2 Utterances
|
|
|
|
-- By utterances we mean whole phrases, such as
|
|
-- 'can be used as moves in a language game': indicatives, questions, imperative,
|
|
-- and one-word utterances. The rules are far from complete.
|
|
--
|
|
-- N.B. we have not included rules for texts, which we find we cannot say much
|
|
-- about on this level. In semantically rich GF grammars, texts, dialogues, etc,
|
|
-- will of course play an important role as categories not reducible to utterances.
|
|
-- An example is proof texts, whose semantics show a dependence between premises
|
|
-- and conclusions. Another example is intersentential anaphora.
|
|
|
|
Utterance = SS ;
|
|
|
|
indicUtt : Sentence -> Utterance = \x -> ss (x.s ++ ".") ;
|
|
interrogUtt : QuestionSent -> Utterance = \x -> ss (x.s ! DirQ ++ "?") ;
|
|
|
|
|
|
--2 Questions
|
|
--
|
|
-- Questions are either direct ("are you happy") or indirect
|
|
-- ("if/whether you are happy").
|
|
|
|
param
|
|
QuestForm = DirQ | IndirQ ;
|
|
|
|
oper
|
|
Question = {s : Bool => ClForm => QuestForm => Str} ;
|
|
QuestionSent = {s : QuestForm => Str} ;
|
|
|
|
--- TODO: questions in all tenses.
|
|
|
|
--3 Yes-no questions
|
|
--
|
|
-- Yes-no questions are used both independently
|
|
-- ("does John walk" / "if John walks")
|
|
-- and after interrogative adverbials
|
|
-- ("why does John walk" / "why John walks").
|
|
--
|
|
-- It is economical to handle with all these cases by the one
|
|
-- rule, $questVerbPhrase'$. The word ("ob" / "whether") never appears
|
|
-- if there is an adverbial.
|
|
|
|
questVerbPhrase : NounPhrase -> VerbGroup -> Question =
|
|
questVerbPhrase' False ;
|
|
|
|
questVerbPhrase' : Bool -> NounPhrase -> VerbGroup -> Question =
|
|
\adv,John,walk ->
|
|
let
|
|
john = John.s ! NomP
|
|
in
|
|
{s = \\b,cl => table {
|
|
DirQ => walk.s ! b ! VQuest Present John.n John.p ++
|
|
john ++
|
|
walk.s2 ! b ! VQuest Present John.n John.p ++
|
|
walk.s3 ! John.n ;
|
|
IndirQ => if_then_else Str adv [] (variants {"if" ; "whether"}) ++
|
|
(predVerbGroupClause John walk).s ! b ! cl
|
|
}
|
|
} ;
|
|
|
|
--3 Wh-questions
|
|
--
|
|
-- Wh-questions are of two kinds: ones that are like $NP - VP$ sentences,
|
|
-- others that are line $S/NP - NP$ sentences.
|
|
|
|
intVerbPhrase : IntPron -> VerbGroup -> Question = \who,walk ->
|
|
let
|
|
who : NounPhrase = who ** {p = P3} ;
|
|
whowalks : Clause = predVerbGroupClause who walk
|
|
in
|
|
{s = \\b,sf,_ => whowalks.s ! b ! sf} ;
|
|
|
|
intSlash : IntPron -> ClauseSlashNounPhrase -> Question = \who,yousee ->
|
|
{s = \\b,cl,q =>
|
|
let
|
|
youSee = case q of {
|
|
DirQ => yousee.s ! b ! cl ;
|
|
IndirQ => yousee.s ! b ! cl ---- the difference??
|
|
}
|
|
in
|
|
variants {
|
|
who.s ! AccP ++ youSee ++ yousee.s2 ;
|
|
yousee.s2 ++ who.s ! GenSP ++ youSee
|
|
}
|
|
} ;
|
|
|
|
--3 Interrogative adverbs
|
|
--
|
|
-- These adverbs will be defined in the lexicon: they include
|
|
-- "when", "where", "how", "why", etc, which are all invariant one-word
|
|
-- expressions. In addition, they can be formed by adding prepositions
|
|
-- to interrogative pronouns, in the same way as adverbials are formed
|
|
-- from noun phrases.
|
|
|
|
IntAdverb = SS ;
|
|
|
|
prepIntAdverb : Preposition -> IntPron -> IntAdverb = \at, whom ->
|
|
ss (at ++ whom.s ! AccP) ;
|
|
|
|
-- A question adverbial can be applied to anything, and whether this makes
|
|
-- sense is a semantic question.
|
|
|
|
questAdverbial : IntAdverb -> NounPhrase -> VerbGroup -> Question =
|
|
\why, you, walk ->
|
|
{s = \\b,cf,q =>
|
|
why.s ++ (questVerbPhrase' True you walk).s ! b ! cf ! q} ;
|
|
|
|
--2 Imperatives
|
|
--
|
|
-- We only consider second-person imperatives.
|
|
|
|
Imperative = SS1 Number ;
|
|
|
|
imperVerbPhrase : Bool -> VerbGroup -> Imperative = \b,walk ->
|
|
{s = \\n => walk.s ! b ! VImperat ++ walk.s2 ! b ! VImperat ++ walk.s3 ! n} ;
|
|
|
|
imperUtterance : Number -> Imperative -> Utterance = \n,I ->
|
|
ss (I.s ! n ++ "!") ;
|
|
|
|
--2 Sentence adverbs
|
|
--
|
|
-- This class covers adverbs such as "otherwise", "therefore", which are prefixed
|
|
-- to a sentence to form a phrase.
|
|
|
|
advSentence : SS -> Sentence -> Utterance = \hence,itiseven ->
|
|
ss (hence.s ++ itiseven.s ++ ".") ;
|
|
|
|
|
|
--2 Coordination
|
|
--
|
|
-- Coordination is to some extent orthogonal to the rest of syntax, and
|
|
-- has been treated in a generic way in the module $CO$ in the file
|
|
-- $coordination.gf$. The overall structure is independent of category,
|
|
-- but there can be differences in parameter dependencies.
|
|
--
|
|
--3 Conjunctions
|
|
--
|
|
-- Coordinated phrases are built by using conjunctions, which are either
|
|
-- simple ("and", "or") or distributed ("both - and", "either - or").
|
|
--
|
|
-- The conjunction has an inherent number, which is used when conjoining
|
|
-- noun phrases: "John and Mary are..." vs. "John or Mary is..."; in the
|
|
-- case of "or", the result is however plural if any of the disjuncts is.
|
|
|
|
Conjunction = CO.Conjunction ** {n : Number} ;
|
|
ConjunctionDistr = CO.ConjunctionDistr ** {n : Number} ;
|
|
|
|
--3 Coordinating sentences
|
|
--
|
|
-- We need a category of lists of sentences. It is a discontinuous
|
|
-- category, the parts corresponding to 'init' and 'last' segments
|
|
-- (rather than 'head' and 'tail', because we have to keep track of the slot between
|
|
-- the last two elements of the list). A list has at least two elements.
|
|
|
|
ListSentence : Type = SD2 ;
|
|
|
|
twoSentence : (_,_ : Sentence) -> ListSentence = CO.twoSS ;
|
|
|
|
consSentence : ListSentence -> Sentence -> ListSentence =
|
|
CO.consSS CO.comma ;
|
|
|
|
-- To coordinate a list of sentences by a simple conjunction, we place
|
|
-- it between the last two elements; commas are put in the other slots,
|
|
-- e.g. "du rauchst, er trinkt und ich esse".
|
|
|
|
conjunctSentence : Conjunction -> ListSentence -> Sentence = \c,xs ->
|
|
ss (CO.conjunctX c xs) ;
|
|
|
|
-- To coordinate a list of sentences by a distributed conjunction, we place
|
|
-- the first part (e.g. "either") in front of the first element, the second
|
|
-- part ("or") between the last two elements, and commas in the other slots.
|
|
-- For sentences this is really not used.
|
|
|
|
conjunctDistrSentence : ConjunctionDistr -> ListSentence -> Sentence =
|
|
\c,xs ->
|
|
ss (CO.conjunctDistrX c xs) ;
|
|
|
|
--3 Coordinating adjective phrases
|
|
--
|
|
-- The structure is the same as for sentences. The result is a prefix adjective
|
|
-- if and only if all elements are prefix.
|
|
|
|
ListAdjPhrase : Type = {s1,s2 : AForm => Str ; p : Bool} ;
|
|
|
|
twoAdjPhrase : (_,_ : AdjPhrase) -> ListAdjPhrase = \x,y ->
|
|
CO.twoTable AForm x y ** {p = andB x.p y.p} ;
|
|
|
|
consAdjPhrase : ListAdjPhrase -> AdjPhrase -> ListAdjPhrase = \xs,x ->
|
|
CO.consTable AForm CO.comma xs x ** {p = andB xs.p x.p} ;
|
|
|
|
conjunctAdjPhrase : Conjunction -> ListAdjPhrase -> AdjPhrase = \c,xs ->
|
|
CO.conjunctTable AForm c xs ** {p = xs.p} ;
|
|
|
|
conjunctDistrAdjPhrase : ConjunctionDistr -> ListAdjPhrase -> AdjPhrase =
|
|
\c,xs ->
|
|
CO.conjunctDistrTable AForm c xs ** {p = xs.p} ;
|
|
|
|
|
|
--3 Coordinating noun phrases
|
|
--
|
|
-- The structure is the same as for sentences. The result is either always plural
|
|
-- or plural if any of the components is, depending on the conjunction.
|
|
|
|
ListNounPhrase : Type = {s1,s2 : NPForm => Str ; n : Number ; p : Person} ;
|
|
|
|
twoNounPhrase : (_,_ : NounPhrase) -> ListNounPhrase = \x,y ->
|
|
CO.twoTable NPForm x y ** {n = conjNumber x.n y.n ; p = conjPerson x.p y.p} ;
|
|
|
|
consNounPhrase : ListNounPhrase -> NounPhrase -> ListNounPhrase = \xs,x ->
|
|
CO.consTable NPForm CO.comma xs x **
|
|
{n = conjNumber xs.n x.n ; p = conjPerson xs.p x.p} ;
|
|
|
|
conjunctNounPhrase : Conjunction -> ListNounPhrase -> NounPhrase = \c,xs ->
|
|
CO.conjunctTable NPForm c xs ** {n = conjNumber c.n xs.n ; p = xs.p} ;
|
|
|
|
conjunctDistrNounPhrase : ConjunctionDistr -> ListNounPhrase -> NounPhrase =
|
|
\c,xs ->
|
|
CO.conjunctDistrTable NPForm c xs ** {n = conjNumber c.n xs.n ; p = xs.p} ;
|
|
|
|
-- We have to define a calculus of numbers of persons. For numbers,
|
|
-- it is like the conjunction with $Pl$ corresponding to $False$.
|
|
|
|
conjNumber : Number -> Number -> Number = \m,n -> case <m,n> of {
|
|
<Sg,Sg> => Sg ;
|
|
_ => Pl
|
|
} ;
|
|
|
|
-- For persons, we let the latter argument win ("either you or I am absent"
|
|
-- but "either I or you are absent"). This is not quite clear.
|
|
|
|
conjPerson : Person -> Person -> Person = \_,p ->
|
|
p ;
|
|
|
|
|
|
|
|
--2 Subjunction
|
|
--
|
|
-- Subjunctions ("when", "if", etc)
|
|
-- are a different way to combine sentences than conjunctions.
|
|
-- The main clause can be a sentences, an imperatives, or a question,
|
|
-- but the subjoined clause must be a sentence.
|
|
--
|
|
-- There are uniformly two variant word orders, e.g.
|
|
-- "if you smoke I get angry"
|
|
-- and "I get angry if you smoke".
|
|
|
|
Subjunction = SS ;
|
|
|
|
subjunctSentence : Subjunction -> Sentence -> Sentence -> Sentence =
|
|
\if, A, B ->
|
|
ss (subjunctVariants if A.s B.s) ;
|
|
|
|
subjunctImperative : Subjunction -> Sentence -> Imperative -> Imperative =
|
|
\if, A, B ->
|
|
{s = \\n => subjunctVariants if A.s (B.s ! n)} ;
|
|
|
|
subjunctQuestion : Subjunction -> Sentence -> QuestionSent -> QuestionSent =
|
|
\if, A, B ->
|
|
{s = \\q => subjunctVariants if A.s (B.s ! q)} ;
|
|
|
|
subjunctVariants : Subjunction -> Str -> Str -> Str = \if,A,B ->
|
|
variants {if.s ++ A ++ "," ++ B ; B ++ "," ++ if.s ++ A} ;
|
|
|
|
subjunctVerbPhrase : VerbGroup -> Subjunction -> Sentence -> VerbGroup =
|
|
\V, if, A ->
|
|
adVerbPhrase V (advPost (if.s ++ A.s)) ;
|
|
|
|
--2 One-word utterances
|
|
--
|
|
-- An utterance can consist of one phrase of almost any category,
|
|
-- the limiting case being one-word utterances. These
|
|
-- utterances are often (but not always) in what can be called the
|
|
-- default form of a category, e.g. the nominative.
|
|
-- This list is far from exhaustive.
|
|
|
|
useNounPhrase : NounPhrase -> Utterance = \john ->
|
|
postfixSS "." (defaultNounPhrase john) ;
|
|
|
|
useCommonNounPhrase : Number -> CommNounPhrase -> Utterance = \n,car ->
|
|
useNounPhrase (indefNounPhrase n car) ;
|
|
|
|
useRegularName : SS -> NounPhrase = \john ->
|
|
nameNounPhrase (nameReg john.s) ;
|
|
|
|
-- Here are some default forms.
|
|
|
|
defaultNounPhrase : NounPhrase -> SS = \john ->
|
|
ss (john.s ! NomP) ;
|
|
|
|
defaultQuestion : QuestionSent -> SS = \whoareyou ->
|
|
ss (whoareyou.s ! DirQ) ;
|
|
|
|
defaultSentence : Sentence -> Utterance = \x ->
|
|
x ;
|
|
|
|
} ;
|