(Pes) Make poss.suff. attach to the head for N2,N3

This commit is contained in:
Inari Listenmaa
2019-02-22 11:16:49 +01:00
parent d175b1eedf
commit c25a236585
5 changed files with 34 additions and 27 deletions
+4 -1
View File
@@ -24,7 +24,10 @@ resource ResPes = MorphoPes ** open Prelude,Predef in {
oper
Compl : Type = {s : Str ; ra : Str ; c : VType} ;
CN : Type = Noun ** {hasAdj : Bool} ; -- for getting the right form when NP/CN is a predicate
CN : Type = Noun ** {
hasAdj : Bool ; -- to get the right form when CN is a predicate
compl : Str -- to make possessive suffix attach to the right word
} ;
NP : Type = {s : Mod => Str ; a : Agr ; animacy : Animacy ; hasAdj : Bool} ;
VPHSlash : Type = VPH ** {c2 : Compl} ;