added QuestIComp to Pred

This commit is contained in:
aarne
2014-02-14 14:36:03 +00:00
parent 22f817262f
commit 35395c22b6
10 changed files with 47 additions and 12 deletions

View File

@@ -1,4 +1,20 @@
concrete PredEng of Pred =
CatEng [Ant,NP,Utt,IP,IAdv,Conj,RP,RS,Imp] **
PredFunctor with
(PredInterface = PredInstanceEng) ;
CatEng [Ant,NP,Utt,IP,IAdv,IComp,Conj,RP,RS] **
PredFunctor - [QuestIComp] ---- IComp has no parameters in Eng
with
(PredInterface = PredInstanceEng)
** open PredInstanceEng in {
lin
QuestIComp a t p icomp np =
let vagr = (agr2vagr np.a) in
initPrClause ** {
v = tenseCopula (a.s ++ t.s ++ p.s) t.t a.a p.p vagr ;
subj = np.s ! subjCase ;
foc = icomp.s ;
focType = FocObj ;
qforms = qformsCopula (a.s ++ t.s ++ p.s) t.t a.a p.p vagr ;
} ;
}