concrete NounHun of Noun = CatHun ** open ResHun, Prelude, Coordination in { flags optimize=all_subs ; lin --2 Noun phrases -- : Det -> CN -> NP DetCN det cn = emptyNP ** det ** { s = \\c => det.s ! Nom ++ cn.s ! det.n ! c ; agr = ; } ; -- : PN -> NP ; UsePN pn = pn ; -- : Pron -> NP ; UsePron pron = pron ; -- : Predet -> NP -> NP ; -- only the man PredetNP predet np = np ** { s = \\c => predet.s ++ np.s ! c ; } ; -- A noun phrase can also be postmodified by the past participle of a -- verb, by an adverb, or by a relative clause -- : NP -> V2 -> NP ; -- the man seen -- PPartNP np v2 = np ** { -- s = \\c => v2.s ! ??? ++ np.s ! c } ; ---- -- : NP -> Adv -> NP ; -- Paris today AdvNP np adv = np ** { s = \\c => np.s ! c ++ adv.s ; } ; -- : NP -> Adv -> NP ; -- boys, such as .. ExtAdvNP np adv = np ** { s = \\c => np.s ! c ++ bindComma ++ adv.s ; } ; -- : NP -> RS -> NP ; -- Paris, which is here RelNP np rs = np ** { s = \\c => np.s ! c ++ bindComma ++ rs.s ! np.agr.p2 ! c ; } ; -- Determiners can form noun phrases directly. -- : Det -> NP ; DetNP det = emptyNP ** { s = det.sp ; agr = ; } ; -- : CN -> NP ; MassNP cn = emptyNP ** { s = \\c => cn.s ! Sg ! c ; agr = ; } ; --2 Determiners -- The determiner has a fine-grained structure, in which a 'nucleus' -- quantifier and an optional numeral can be discerned. -- : Quant -> Num -> Det ; DetQuant quant num = quant ** num ** { s = \\c => case of { => [] ; -- don't output "a 2 cars" _ => quant.s ! num.n ! c } ++ num.s ! Attrib ; -- TODO: add inflection table in numbers sp = \\c => case of { => [] ; _ => quant.sp ! num.n ! c } ++ num.s ! Indep ; } ; -- : Quant -> Num -> Ord -> Det ; -- these five best DetQuantOrd quant num ord = let theseFive = DetQuant quant num in theseFive ** { s = \\c => theseFive.s ! c ++ ord.s ! num.n ; sp = \\c => theseFive.sp ! c ++ ord.s ! num.n ; } ; -- Whether the resulting determiner is singular or plural depends on the -- cardinal. -- All parts of the determiner can be empty, except $Quant$, which is -- the "kernel" of a determiner. It is, however, the $Num$ that determines -- the inherent number. NumSg = baseNum ; NumPl = baseNum ** {n = Pl} ; -- : Card -> Num ; NumCard card = card ** { n = Sg -- Numerals take noun in Sg: e.g. öt város, literally 'five city' } ; -- : Digits -> Card ; NumDigits dig = dig ** { s = \\place => dig.s ! NCard ; numtype = IsDig ; } ; -- : Numeral -> Card ; NumNumeral num = num ; {- -- : AdN -> Card -> Card ; AdNum adn card = card ** { s = adn.s ++ card.s } ; -- : Digits -> Ord ; OrdDigits digs = digs ** { s = digs.s ! NOrd } ; -- : Numeral -> Ord ; OrdNumeral num = num ** { s = \\_ => num.ord } ; -} -- : A -> Ord ; OrdSuperl a = { s = a.s ! Superl ; n = Sg -- ?? is this meaningful? } ; -- One can combine a numeral and a superlative. -- : Numeral -> A -> Ord ; -- third largest -- OrdNumeralSuperl num a = num ** { } ; -- : Quant DefArt = { s, sp = \\_,_ => pre {"a" ; "az" / v } ; isIndefArt = False ; objdef = Def ; } ; -- : Quant IndefArt = { s, sp = \\n,_ => case n of {Sg => "egy" ; Pl => []} ; isIndefArt = True ; objdef = Indef ; } ; -- : Pron -> Quant -- PossPron pron = -- let p = pron.poss ; -- in DefArt ** { -- } ; --2 Common nouns -- : N -> CN -- : N2 -> CN ; UseN,UseN2 = \n -> n ; -- : N2 -> NP -> CN ; -- ComplN2 n2 np = -- : N3 -> NP -> N2 ; -- distance from this city (to Paris) -- ComplN3 n3 np = -- : N3 -> N2 ; -- distance (from this city) -- Use2N3 n3 = lin N2 n3 ** { c2 = n3.c3 } ; -- : N3 -> N2 ; -- distance (to Paris) -- Use3N3 n3 = lin N2 n3 ; -- : AP -> CN -> CN AdjCN ap cn = cn ** { s = \\n,c => ap.s ! Sg ++ cn.s ! n ! c ++ ap.compar } ; -- : CN -> RS -> CN ; RelCN cn rs = cn ** { s = \\n,c => cn.s ! n ! c ++ rs.s ! n ! c } ; -- : CN -> Adv -> CN ; AdvCN cn adv = cn ** { s = \\n,c => cn.s ! n ! c ++ adv.s } ; -- Nouns can also be modified by embedded sentences and questions. -- For some nouns this makes little sense, but we leave this for applications -- to decide. Sentential complements are defined in VerbHun. -- : CN -> SC -> CN ; -- question where she sleeps -- SentCN cn sc = cn ** { } ; --2 Apposition -- This is certainly overgenerating. -- : CN -> NP -> CN ; -- city Paris (, numbers x and y) ApposCN cn np = cn ** { s = \\n,c => cn.s ! n ! c ++ np.s ! Nom } ; --2 Possessive and partitive constructs -- : PossNP : CN -> NP -> CN ; -- PossNP cn np = cn ** { -- } ; -- : CN -> NP -> CN ; -- glass of wine / two kilos of red apples -- PartNP cn np = cn ** { -- } ; {- -- This is different from the partitive, as shown by many languages. -- : Det -> NP -> NP ; CountNP det np = np ** { } ; -- Nonsense for DefArt or IndefArt --3 Conjoinable determiners and ones with adjectives -- : DAP -> AP -> DAP ; -- the large (one) AdjDAP dap ap = dap ** { } ; -- : Det -> DAP ; -- this (or that) DetDAP det = det ; -} }