1
0
forked from GitHub/gf-rgl

some more functions added to Slv by guessing and using Morgan Nilsson's grammar book

This commit is contained in:
aarne
2016-10-04 16:17:07 +00:00
parent d2d349c93d
commit 1d62281dea
7 changed files with 33 additions and 8 deletions
+4 -3
View File
@@ -4,6 +4,7 @@ lincat
-- Sentence
Cl = {s : P.Tense => P.Anteriority => P.Polarity => Str} ;
Imp = {s : P.Polarity => Gender => Number => Str} ;
ClSlash = {s : P.Tense => P.Anteriority => P.Polarity => Str ; c2 : Prep} ; ----AR
-- Question
QCl = {s : P.Tense => P.Anteriority => P.Polarity => Str} ;
@@ -36,11 +37,11 @@ lincat
Prep = {s : Str; c : Case} ;
-- Open lexical classes, e.g. Lexicon
V = {s : VForm => Str};
VS = {s : VForm => Str};
V = {s : VForm => Str ; p : Str}; ----AR: +p particle
VS = {s : VForm => Str ; p : Str};
VQ = {s : VForm => Str};
VV = {s : VForm => Str};
V2 = {s : VForm => Str; c2 : Prep};
V2 = {s : VForm => Str; c2 : Prep ; p : Str}; ----AR: +p particle
A = {s : AForm => Str};