forked from GitHub/gf-rgl
verbal morphology is not syntactic. added negation
This commit is contained in:
@@ -4,18 +4,18 @@ concrete CatTur of Cat = CommonX - [CAdv,AdN] ** open ResTur, HarmonyTur, Prelud
|
||||
|
||||
lincat
|
||||
|
||||
S = {s, subord : Str} ;
|
||||
S = {s : Str} ;
|
||||
|
||||
Cl = {s : Tense => Str; subord : Str} ;
|
||||
Imp = {s : Number => Str} ;
|
||||
Cl = {s : Tense => Polarity => Str} ;
|
||||
Imp = {s : Polarity => Number => Str} ;
|
||||
|
||||
-- Noun
|
||||
CN = {s : Number => Case => Str; gen : Number => Agr => Str; h : Harmony} ;
|
||||
NP = {s : Case => Str ; h : Harmony; a : Agr} ;
|
||||
|
||||
VP = Verb ** {compl : Str} ;
|
||||
VPSlash = Verb ** {compl : Str; c : Prep} ;
|
||||
Comp = Verb ;
|
||||
VP = {s : VForm => Str; compl : Str} ;
|
||||
VPSlash = {s : VForm => Str; compl : Str; c : Prep} ;
|
||||
Comp = {s : VForm => Str; compl : Str} ;
|
||||
|
||||
Pron = ResTur.Pron ;
|
||||
Det = {s : Str; n : Number; useGen : UseGen} ;
|
||||
@@ -58,8 +58,7 @@ concrete CatTur of Cat = CommonX - [CAdv,AdN] ** open ResTur, HarmonyTur, Prelud
|
||||
|
||||
|
||||
linref
|
||||
V = \v -> v.s ! VInfinitive ;
|
||||
V2 = \v -> v.s ! VInfinitive ++ v.c.s ;
|
||||
VP = \vp -> vp.compl ++ vp.s ! VInfinitive ;
|
||||
V2 = \v -> v.s ++ v.c.s ;
|
||||
VP = \vp -> vp.compl ++ vp.s ! VInf Pos ;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user