mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-22 19:22:50 -06:00
121 lines
4.0 KiB
Plaintext
121 lines
4.0 KiB
Plaintext
concrete NounBul of Noun = CatBul ** open ResBul, Prelude in {
|
|
|
|
flags optimize=all_subs ;
|
|
|
|
lin
|
|
DetCN det cn =
|
|
{ s = \\role => let nf = case <det.n,det.spec> of {
|
|
<Sg,Def> => case role of {
|
|
RSubj => NFSgDefNom ;
|
|
_ => NF Sg Def
|
|
} ;
|
|
<Pl,Indef> => case det.countable of {
|
|
True => NFPlCount ;
|
|
False => NF Pl Indef
|
|
} ;
|
|
_ => NF det.n det.spec
|
|
} ;
|
|
s = det.s ! cn.g ! role ++ cn.s ! nf
|
|
in case role of {
|
|
RObj Dat => "íà" ++ s;
|
|
_ => s
|
|
} ;
|
|
a = {gn = gennum cn.g det.n; p = P3} ;
|
|
} ;
|
|
UsePN pn = { s = \\role => case role of {
|
|
RObj Dat => "íà" ++ pn.s;
|
|
_ => pn.s
|
|
} ;
|
|
a = {gn = GSg pn.g; p = P3}
|
|
} ;
|
|
UsePron p = {s = p.s; a=p.a} ;
|
|
|
|
PredetNP pred np = {
|
|
s = \\c => pred.s ! np.a.gn ++ np.s ! c ;
|
|
a = np.a
|
|
} ;
|
|
|
|
PPartNP np v2 = {
|
|
s = \\c => np.s ! c ++ v2.s ! VPassive (aform np.a.gn Indef c) ;
|
|
a = np.a
|
|
} ;
|
|
|
|
AdvNP np adv = {
|
|
s = \\c => np.s ! c ++ adv.s ;
|
|
a = np.a
|
|
} ;
|
|
|
|
DetSg quant ord = {
|
|
s = \\g,c => quant.s ! aform (gennum g Sg) Def c ++
|
|
ord.s ! aform (gennum g Sg) quant.spec c ;
|
|
n = Sg ;
|
|
countable = False ;
|
|
spec=case ord.nonEmpty of {False => quant.spec; _ => Indef}
|
|
} ;
|
|
|
|
DetPl quant num ord = {
|
|
s = \\g,c => num.s ! dgenderSpecies g quant.spec c ++
|
|
quant.s ! aform (gennum g num.n) Def c ++
|
|
ord.s ! aform (gennum g num.n) (case num.nonEmpty of {False => quant.spec; _ => Indef}) c ;
|
|
n = num.n ;
|
|
countable = num.nonEmpty ;
|
|
spec=case <num.nonEmpty,ord.nonEmpty> of {<False,False> => quant.spec; _ => Indef}
|
|
} ;
|
|
|
|
PossPron p = {
|
|
s = p.gen ;
|
|
spec = Indef
|
|
} ;
|
|
|
|
NoNum = {s = \\_ => []; n = Pl; nonEmpty = False} ;
|
|
NoOrd = {s = \\_ => []; nonEmpty = False} ;
|
|
|
|
NumDigits n = {s = \\gspec => n.s ! NCard gspec; n = n.n; nonEmpty = True} ;
|
|
OrdDigits n = {s = \\aform => n.s ! NOrd aform; nonEmpty = True} ;
|
|
|
|
NumInt n = {s = \\gspec => n.s ; n = Pl; nonEmpty = True} ; -- DEPRECATED
|
|
OrdInt n = {s = \\aform => n.s ++ "th"; nonEmpty = True} ; -- DEPRECATED
|
|
|
|
NumNumeral numeral = {s = \\gspec => numeral.s ! NCard gspec; n = numeral.n; nonEmpty = True} ;
|
|
OrdNumeral numeral = {s = \\aform => numeral.s ! NOrd aform; nonEmpty = True} ;
|
|
|
|
AdNum adn num = {s = \\gspec => adn.s ++ num.s ! gspec; n = num.n; nonEmpty = num.nonEmpty} ;
|
|
|
|
OrdSuperl a = {s = \\aform => "íàé" ++ "-" ++ a.s ! aform; nonEmpty = True} ;
|
|
|
|
DefArt = {
|
|
s = \\_ => [] ;
|
|
spec = ResBul.Def
|
|
} ;
|
|
|
|
IndefArt = {
|
|
s = \\_ => [] ;
|
|
spec = ResBul.Indef
|
|
} ;
|
|
|
|
MassDet = {
|
|
s = \\_ => [] ;
|
|
spec = Indef
|
|
} ;
|
|
|
|
UseN noun = noun ;
|
|
UseN2 noun = noun ;
|
|
UseN3 noun = noun ;
|
|
|
|
ComplN2 f x = {s = \\nf => f.s ! nf ++ f.c2 ++ x.s ! RObj Acc; g=f.g} ;
|
|
ComplN3 f x = {s = \\nf => f.s ! nf ++ f.c2 ++ x.s ! RObj Acc; c2 = f.c3; g=f.g} ;
|
|
|
|
AdjCN ap cn = {
|
|
s = \\nf => preOrPost ap.isPre (ap.s ! nform2aform nf cn.g) (cn.s ! (indefNForm nf)) ;
|
|
g = cn.g
|
|
} ;
|
|
AdvCN cn ad = {
|
|
s = \\nf => cn.s ! nf ++ ad.s ;
|
|
g = cn.g
|
|
} ;
|
|
|
|
SentCN cn sc = {s = \\nf => cn.s ! nf ++ sc.s; g=cn.g} ;
|
|
|
|
ApposCN cn np = {s = \\nf => cn.s ! nf ++ np.s ! RSubj; g=cn.g} ;
|
|
}
|