mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-23 09:52:55 -06:00
missing Pred functions in Fin
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
concrete NDPredFin of Pred =
|
concrete NDPredFin of Pred =
|
||||||
CatFin [Ant,NP,Utt,IP,IAdv,IComp,Conj,RS,RP] **
|
CatFin [Ant,NP,Utt,IP,IAdv,IComp,Conj,Subj,RS,RP] **
|
||||||
NDPredFunctor
|
NDPredFunctor
|
||||||
with
|
with
|
||||||
(PredInterface = PredInstanceFin),
|
(PredInterface = PredInstanceFin),
|
||||||
|
|||||||
@@ -1,34 +1,42 @@
|
|||||||
--# -path=.:../finnish/stemmed:../finnish:../common:alltenses
|
--# -path=.:../finnish/stemmed:../finnish:../common:alltenses
|
||||||
|
|
||||||
concrete PredFin of Pred =
|
concrete PredFin of Pred =
|
||||||
CatFin [Ant,NP,Utt,IP,IAdv,IComp,Conj,RP,RS] **
|
CatFin [Ant,NP,Utt,IP,IAdv,IComp,Conj,Subj,RP,RS] **
|
||||||
PredFunctor
|
PredFunctor
|
||||||
- [
|
- [
|
||||||
|
|
||||||
-- not yet
|
|
||||||
UseVPC,StartVPC,ContVPC
|
|
||||||
|
|
||||||
,PresPartAP
|
|
||||||
,PastPartAP,AgentPastPartAP
|
|
||||||
,PassUseV, AgentPassUseV
|
|
||||||
|
|
||||||
-- overridden
|
-- overridden
|
||||||
,UseV
|
UseV
|
||||||
,UseAP
|
,UseAP
|
||||||
,UseNP
|
,UseNP
|
||||||
,UseCN
|
,UseCN
|
||||||
,QuestVP
|
,QuestVP
|
||||||
,PredVP
|
,PredVP
|
||||||
,ComplV2
|
,ComplV2
|
||||||
,ReflVP2,ReflVP
|
,ReflVP2
|
||||||
,RelVP,RelSlash
|
,ReflVP
|
||||||
|
,RelVP
|
||||||
|
,RelSlash
|
||||||
,QuestIComp
|
,QuestIComp
|
||||||
|
,PassUseV
|
||||||
|
,PresPartAP
|
||||||
|
,PastPartAP
|
||||||
|
,AgentPastPartAP
|
||||||
|
,AgentPassUseV
|
||||||
|
,UseVPC
|
||||||
|
,StartVPC
|
||||||
|
,ContVPC
|
||||||
|
,ComplVV
|
||||||
|
,SlashV2V
|
||||||
]
|
]
|
||||||
|
|
||||||
with
|
with
|
||||||
(PredInterface = PredInstanceFin) ** open PredInstanceFin, ResFin in {
|
(PredInterface = PredInstanceFin) ** open PredInstanceFin, (S = StemFin), ResFin in {
|
||||||
|
|
||||||
lin
|
lin
|
||||||
|
ComplVV x vp vpo = addObj2VP vp (\\a => vpo.s ! VPIVV vp.vvtype ! a) ;
|
||||||
|
SlashV2V x vp vpo = addObj2VP vp (\\a => vpo.s ! VPIVV vp.vvtype ! a) ;
|
||||||
|
|
||||||
UseV x a t p verb = initPrVerbPhraseV a t p verb ;
|
UseV x a t p verb = initPrVerbPhraseV a t p verb ;
|
||||||
|
|
||||||
UseAP x a t p ap = useCopula a t p ** {
|
UseAP x a t p ap = useCopula a t p ** {
|
||||||
@@ -130,19 +138,13 @@ lin
|
|||||||
a = defaultAgr
|
a = defaultAgr
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
UseVPC,StartVPC,ContVPC
|
|
||||||
|
|
||||||
,PresPartAP
|
|
||||||
,PastPartAP,AgentPastPartAP
|
|
||||||
,AgentPassUseV
|
|
||||||
= variants {} ;
|
|
||||||
|
|
||||||
PassUseV x a t p verb = initPrVerbPhraseV a t p verb ** {
|
PassUseV x a t p verb = initPrVerbPhraseV a t p verb ** {
|
||||||
v : Agr => {fin,inf : Str} = case verb.sc of {
|
v : Agr => {fin,inf : Str} = case verb.sc of {
|
||||||
SCNom => \\agr => finV (a.s ++ t.s ++ p.s) t.t a.a p.p Pass agr (lin PrV verb) ;
|
SCNom => \\agr => finV (a.s ++ t.s ++ p.s) t.t a.a p.p Pass agr (lin PrV verb) ;
|
||||||
_ => \\_ => finV (a.s ++ t.s ++ p.s) t.t a.a p.p Pass defaultAgr (lin PrV verb)
|
_ => \\_ => finV (a.s ++ t.s ++ p.s) t.t a.a p.p Pass defaultAgr (lin PrV verb)
|
||||||
} ;
|
} ;
|
||||||
inf : VVType => Str = \\vtt => tenseInfV (a.s ++ p.s) a.a p.p Pass (lin PrV verb) vtt ; ---- still Act
|
inf : VPIType => Str = \\vtt => tenseInfV (a.s ++ p.s) a.a p.p Pass (lin PrV verb) vtt ; ---- still Act
|
||||||
imp : ImpType => Str = \\it => imperativeV p.s p.p it (lin PrV verb) ; ---- still Act
|
imp : ImpType => Str = \\it => imperativeV p.s p.p it (lin PrV verb) ; ---- still Act
|
||||||
isPass : Bool = True ;
|
isPass : Bool = True ;
|
||||||
c1 : Compl = noComplCase ;
|
c1 : Compl = noComplCase ;
|
||||||
@@ -152,14 +154,90 @@ lin
|
|||||||
h = case a.a of {Anter => Back ; _ => verb.h} ;
|
h = case a.a of {Anter => Back ; _ => verb.h} ;
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
---- this will be fun!
|
AgentPassUseV x a t p verb np = initPrVerbPhraseV a t p verb ** {
|
||||||
|
sc = npform2subjcase verb.c1.c ;
|
||||||
|
obj1 = \\a => appSubjCase verb.sc np ;
|
||||||
|
} ;
|
||||||
|
|
||||||
ByVP, -- tekemällä
|
PresPartAP x v = {
|
||||||
WhenVP, -- tehdessä
|
s = \\a => vPresPart v a ;
|
||||||
BeforeVP, -- ennen tekemistä
|
c1 = v.c1 ; -- looking at her
|
||||||
AfterVP, -- tehtyä
|
c2 = v.c2 ;
|
||||||
InOrderVP, -- tehdäkseen
|
obj1 = noObj ;
|
||||||
WithoutVP -- tekemättä
|
} ;
|
||||||
|
|
||||||
|
PastPartAP x v = {
|
||||||
|
s = \\a => vPastPart v a ;
|
||||||
|
c1 = v.c1 ; -- looking at her
|
||||||
|
c2 = v.c2 ;
|
||||||
|
obj1 = noObj ;
|
||||||
|
} ;
|
||||||
|
|
||||||
|
AgentPastPartAP x v np = {
|
||||||
|
s = \\a => (S.sverb2verbSep v).s ! AgentPart (aForm a) ;
|
||||||
|
c1 = v.c1 ;
|
||||||
|
c2 = v.c2 ;
|
||||||
|
obj1 = \\_ => appComplCase agentCase np ; ---- addObj
|
||||||
|
} ;
|
||||||
|
|
||||||
|
|
||||||
|
StartVPC x c v w = { ---- some loss of quality seems inevitable
|
||||||
|
v = \\a =>
|
||||||
|
let
|
||||||
|
vv = v.v ! a ;
|
||||||
|
wv = w.v ! a ;
|
||||||
|
vpa = vagr2agr a ;
|
||||||
|
in
|
||||||
|
vv.fin ++ v.adV ++ vv.inf ++ v.adj ! vpa ++
|
||||||
|
v.obj1 ! vpa ++ v.obj2 ! vpa ++ v.adv ++ v.ext
|
||||||
|
++ c.s2 ++
|
||||||
|
wv.fin ++ w.adV ++ wv.inf ++ w.adj ! vpa ++
|
||||||
|
w.obj1 ! vpa ++ w.obj2 ! vpa ++ w.adv ++ w.ext ;
|
||||||
|
inf = \\a,vt =>
|
||||||
|
infVP vt a v ++ c.s2 ++ infVP vt a w ;
|
||||||
|
imp = \\i =>
|
||||||
|
impVP i v ++ c.s2 ++ impVP i w ;
|
||||||
|
c1 = noComplCase ; ---- w.c1 ? --- the full story is to unify v and w...
|
||||||
|
c2 = noComplCase ; ---- w.c2 ?
|
||||||
|
s1 = c.s1 ;
|
||||||
|
} ;
|
||||||
|
|
||||||
|
ContVPC x v w = { ---- some loss of quality seems inevitable
|
||||||
|
v = \\a =>
|
||||||
|
let
|
||||||
|
vv = v.v ! a ;
|
||||||
|
wv = w.v ! a ;
|
||||||
|
vpa = vagr2agr a ;
|
||||||
|
in
|
||||||
|
vv.fin ++ v.adV ++ vv.inf ++ v.adj ! vpa ++
|
||||||
|
v.obj1 ! vpa ++ v.obj2 ! vpa ++ v.adv ++ v.ext
|
||||||
|
++ "," ++
|
||||||
|
wv ;
|
||||||
|
inf = \\a,vt =>
|
||||||
|
infVP vt a v ++ "," ++ w.inf ! a ! vt ;
|
||||||
|
imp = \\i =>
|
||||||
|
impVP i v ++ "," ++ w.imp ! i ;
|
||||||
|
c1 = noComplCase ; ---- w.c1 ? --- the full story is to unify v and w...
|
||||||
|
c2 = noComplCase ; ---- w.c2 ?
|
||||||
|
s1 = w.s1 ;
|
||||||
|
} ;
|
||||||
|
|
||||||
|
UseVPC x vpc = initPrVerbPhrase ** { ---- big loss of quality (overgeneration) seems inevitable
|
||||||
|
v = \\a => {fin = vpc.s1 ++ vpc.v ! a ; inf = []} ;
|
||||||
|
inf = \\vt => vpc.inf ! defaultAgr ! vt ; ---- agr
|
||||||
|
imp = vpc.imp ;
|
||||||
|
c1 = vpc.c1 ;
|
||||||
|
c2 = vpc.c2 ;
|
||||||
|
} ;
|
||||||
|
|
||||||
|
|
||||||
|
ByVP x vp vpi = vp ** {adv = vpi.s ! VPIInf3Adess ! defaultAgr} ; -- tekemällä
|
||||||
|
WhenVP x vp vpi = vp ** {adv = vpi.s ! VPIInf2Iness ! defaultAgr} ; -- tehdessä ---- agr
|
||||||
|
BeforeVP x vp vpi = vp ** {adv = "ennen" ++ vpi.s ! VPIInf4Part ! defaultAgr} ; -- ennen tekemistä
|
||||||
|
InOrderVP x vp vpi = vp ** {adv = vpi.s ! VPIInf1Long ! defaultAgr} ; -- tehdäkseen ---- agr
|
||||||
|
WithoutVP x vp vpi = vp ** {adv = vpi.s ! VPIInf3Abess ! defaultAgr} ; -- tekemättä
|
||||||
|
|
||||||
|
AfterVP -- tehtyä
|
||||||
= variants {} ;
|
= variants {} ;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ lincat
|
|||||||
|
|
||||||
VPC = {
|
VPC = {
|
||||||
v : VAgr => Str ;
|
v : VAgr => Str ;
|
||||||
inf : Agr => VVType => Str ;
|
inf : Agr => PredInterface.VVType => Str ;
|
||||||
imp : ImpType => Str ;
|
imp : ImpType => Str ;
|
||||||
c1 : ComplCase ;
|
c1 : ComplCase ;
|
||||||
c2 : ComplCase ;
|
c2 : ComplCase ;
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ oper
|
|||||||
PrVerb = StemFin.SVerb1 ** {
|
PrVerb = StemFin.SVerb1 ** {
|
||||||
c1 : ComplCase ;
|
c1 : ComplCase ;
|
||||||
c2 : ComplCase ;
|
c2 : ComplCase ;
|
||||||
vvtype : VVType ;
|
vvtype : ResFin.VVType ;
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
initPrVerb : PrVerb = {
|
initPrVerb : PrVerb = {
|
||||||
@@ -24,12 +24,12 @@ oper
|
|||||||
sc = SCNom ;
|
sc = SCNom ;
|
||||||
h = Back ;
|
h = Back ;
|
||||||
p = [] ;
|
p = [] ;
|
||||||
c1,c2 = noComplCase ; isSubjectControl = True ; vtype = Act ; vvtype = vvInfinitive
|
c1,c2 = noComplCase ; isSubjectControl = True ; vtype = Act ; vvtype = VVInf ;
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
PrVerbPhrase = {
|
PrVerbPhrase = {
|
||||||
v : Agr => {fin,inf : Str} ;
|
v : Agr => {fin,inf : Str} ;
|
||||||
inf : VVType => Str ;
|
inf : VPIType => Str ;
|
||||||
imp : ImpType => Str ;
|
imp : ImpType => Str ;
|
||||||
adj : Agr => Str ;
|
adj : Agr => Str ;
|
||||||
obj1 : Agr => Str ; -- Bool => Polarity => Agr => Str ; -- talo/talon/taloa
|
obj1 : Agr => Str ; -- Bool => Polarity => Agr => Str ; -- talo/talon/taloa
|
||||||
@@ -39,7 +39,7 @@ oper
|
|||||||
ext : Str ;
|
ext : Str ;
|
||||||
isNeg : Bool ; -- True if some complement is negative
|
isNeg : Bool ; -- True if some complement is negative
|
||||||
isPass : Bool ; -- True if the verb is rendered in the passive
|
isPass : Bool ; -- True if the verb is rendered in the passive
|
||||||
vvtype : VVType ;
|
vvtype : ResFin.VVType ;
|
||||||
sc : SubjCase ;
|
sc : SubjCase ;
|
||||||
h : Harmony ;
|
h : Harmony ;
|
||||||
c1 : Compl ;
|
c1 : Compl ;
|
||||||
@@ -49,7 +49,7 @@ oper
|
|||||||
|
|
||||||
initPrVerbPhrase : PrVerbPhrase = {
|
initPrVerbPhrase : PrVerbPhrase = {
|
||||||
v : Agr => {fin,inf : Str} = \\_ => {fin,inf = []} ;
|
v : Agr => {fin,inf : Str} = \\_ => {fin,inf = []} ;
|
||||||
inf : VVType => Str = \\vtt => [] ;
|
inf : VPIType => Str = \\vtt => [] ;
|
||||||
imp : ImpType => Str = \\_ => [] ;
|
imp : ImpType => Str = \\_ => [] ;
|
||||||
adj : Agr => Str = \\_ => [] ;
|
adj : Agr => Str = \\_ => [] ;
|
||||||
obj1 : Agr => Str = \\_ => [] ;
|
obj1 : Agr => Str = \\_ => [] ;
|
||||||
@@ -61,7 +61,7 @@ oper
|
|||||||
isPass : Bool = False ;
|
isPass : Bool = False ;
|
||||||
c1 : Compl = noComplCase ;
|
c1 : Compl = noComplCase ;
|
||||||
c2 : Compl = noComplCase ;
|
c2 : Compl = noComplCase ;
|
||||||
vvtype = defaultVVType ;
|
vvtype = VVInf ;
|
||||||
sc = SCNom ;
|
sc = SCNom ;
|
||||||
h = Back ;
|
h = Back ;
|
||||||
qforms : VAgr => Str * Str = \\_ => <[],[]> -- special Eng for introducing "do" in questions
|
qforms : VAgr => Str * Str = \\_ => <[],[]> -- special Eng for introducing "do" in questions
|
||||||
@@ -75,7 +75,7 @@ oper
|
|||||||
SCNom => \\agr => finV (a.s ++ t.s ++ p.s) t.t a.a p.p Act agr (lin PrV verb) ;
|
SCNom => \\agr => finV (a.s ++ t.s ++ p.s) t.t a.a p.p Act agr (lin PrV verb) ;
|
||||||
_ => \\_ => finV (a.s ++ t.s ++ p.s) t.t a.a p.p Act defaultAgr (lin PrV verb)
|
_ => \\_ => finV (a.s ++ t.s ++ p.s) t.t a.a p.p Act defaultAgr (lin PrV verb)
|
||||||
} ;
|
} ;
|
||||||
inf : VVType => Str = \\vtt => tenseInfV (a.s ++ p.s) a.a p.p Act (lin PrV verb) vtt ;
|
inf : VPIType => Str = \\vtt => tenseInfV (a.s ++ p.s) a.a p.p Act (lin PrV verb) vtt ;
|
||||||
imp : ImpType => Str = \\it => imperativeV p.s p.p it (lin PrV verb) ;
|
imp : ImpType => Str = \\it => imperativeV p.s p.p it (lin PrV verb) ;
|
||||||
adj : Agr => Str = \\_ => [] ;
|
adj : Agr => Str = \\_ => [] ;
|
||||||
obj1 : Agr => Str = \\_ => [] ;
|
obj1 : Agr => Str = \\_ => [] ;
|
||||||
@@ -131,7 +131,7 @@ oper
|
|||||||
Case = ResFin.Case ;
|
Case = ResFin.Case ;
|
||||||
NPCase = ResFin.NPForm ;
|
NPCase = ResFin.NPForm ;
|
||||||
VForm = S.SVForm ;
|
VForm = S.SVForm ;
|
||||||
VVType = ResFin.VVType ;
|
VVType = VPIType ;
|
||||||
VType = Voice ; ----
|
VType = Voice ; ----
|
||||||
Gender = Unit ; ----
|
Gender = Unit ; ----
|
||||||
|
|
||||||
@@ -144,7 +144,7 @@ oper
|
|||||||
passive = Pass ;
|
passive = Pass ;
|
||||||
|
|
||||||
defaultVType = Act ;
|
defaultVType = Act ;
|
||||||
defaultVVType = VVInf ;
|
defaultVVType = vvInfinitive ;
|
||||||
|
|
||||||
subjCase : NPCase = ResFin.NPCase Nom ;
|
subjCase : NPCase = ResFin.NPCase Nom ;
|
||||||
objCase : NPCase = NPAcc ;
|
objCase : NPCase = NPAcc ;
|
||||||
@@ -190,13 +190,25 @@ oper
|
|||||||
--- this is only needed in VPC formation
|
--- this is only needed in VPC formation
|
||||||
vagr2agr : VAgr -> Agr = \a -> a ;
|
vagr2agr : VAgr -> Agr = \a -> a ;
|
||||||
|
|
||||||
vPastPart : PrVerb -> AAgr -> Str = \v,a -> (S.sverb2verbSep v).s ! PastPartPass (AN (NCase Sg Part)) ; ---- case
|
vPastPart : PrVerb -> AAgr -> Str = \v,a -> (S.sverb2verbSep v).s ! PastPartPass (aForm a) ;
|
||||||
vPresPart : PrVerb -> AAgr -> Str = \v,a -> (S.sverb2verbSep v).s ! PresPartAct (AN (NCase Sg Part)) ; ---- case
|
vPresPart : PrVerb -> AAgr -> Str = \v,a -> (S.sverb2verbSep v).s ! PresPartAct (aForm a) ;
|
||||||
|
|
||||||
vvInfinitive : VVType = VVInf ;
|
-- predicative adjective form
|
||||||
|
aForm : AAgr -> AForm = \a -> case a of {
|
||||||
|
Ag Pl _ => AN (NCase Pl Part) ;
|
||||||
|
_ => AN (NCase Sg Nom)
|
||||||
|
} ;
|
||||||
|
---- TODO: case system of PrAP
|
||||||
|
|
||||||
|
vvInfinitive : VVType = VPIVV VVInf ;
|
||||||
|
|
||||||
isRefl : PrVerb -> Bool = \_ -> False ; ----
|
isRefl : PrVerb -> Bool = \_ -> False ; ----
|
||||||
|
|
||||||
|
-- the forms outside VPIVV to be used in adverbials such as "tekemällä"
|
||||||
|
param
|
||||||
|
VPIType = VPIVV (ResFin.VVType)
|
||||||
|
| VPIInf3Adess | VPIInf3Abess | VPIInf2Iness | VPIInf1Long {- | VPIPastPartPassPart -} | VPIInf4Part ;
|
||||||
|
-- tekemällä, tekemättä, tehdessä, tehdäkseen, tehtyään, tekemistä
|
||||||
|
|
||||||
------------------
|
------------------
|
||||||
--- opers --------
|
--- opers --------
|
||||||
@@ -213,11 +225,19 @@ oper
|
|||||||
in
|
in
|
||||||
{fin = sta ++ ovps.fin ; inf = ovps.inf} ;
|
{fin = sta ++ ovps.fin ; inf = ovps.inf} ;
|
||||||
|
|
||||||
infV : Str -> Anteriority -> Polarity -> SVoice -> PrVerb -> VVType -> Str =
|
infV : Str -> Anteriority -> Polarity -> SVoice -> PrVerb -> VPIType -> Str =
|
||||||
\sa,a,pol,o,v,vvt ->
|
\sa,a,pol,o,v,vvt ->
|
||||||
let
|
let
|
||||||
vt = vvtype2infform vvt ;
|
vt = case vvt of {
|
||||||
ovps = (S.vp2old_vp (S.predV v)).s ! VIInf vt ! a ! pol ! defaultAgr ; -- VIForm => Anteriority => Polarity => Agr => {fin, inf : Str} ;
|
VPIVV vi => VIInf (vvtype2infform vi) ;
|
||||||
|
VPIInf3Adess => VIInf Inf3Adess ;
|
||||||
|
VPIInf3Abess => VIInf Inf3Abess ;
|
||||||
|
VPIInf2Iness => VIInf Inf2Iness ;
|
||||||
|
VPIInf1Long => VIInf Inf1Long ;
|
||||||
|
---- VPIPastPartPassPart => PastPartPass (AN (NCase Sg Part)) ;
|
||||||
|
VPIInf4Part => VIInf Inf4Part
|
||||||
|
} ;
|
||||||
|
ovps = (S.vp2old_vp (S.predV v)).s ! vt ! a ! pol ! defaultAgr ; -- VIForm => Anteriority => Polarity => Agr => {fin, inf : Str} ;
|
||||||
in
|
in
|
||||||
sa ++ ovps.fin ++ ovps.inf ;
|
sa ++ ovps.fin ++ ovps.inf ;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user