1
0
forked from GitHub/gf-rgl

Animacy is now stored and used in Mophology but not yet in syntax

This commit is contained in:
krasimir
2016-08-29 15:28:15 +00:00
parent 52ef0b9d5e
commit 5c35480e68
4 changed files with 43 additions and 31 deletions
+9
View File
@@ -6,6 +6,8 @@ param
Gender = Masc | Fem | Neut ;
Person = P1 | P2 | P3 ;
Species = Indef | Def ;
Animacy = Animate | Inanimate ;
AGender = AMasc Animacy | AFem | ANeut ;
NumAgr = UseNum Number | UseGen;
DForm = Unit Gender | Teen | Ten | Hundred;
@@ -113,5 +115,12 @@ oper
numAgr2num : NumAgr => Number =
table {UseNum n => n; UseGen => Pl} ;
agender2gender : AGender -> Gender = \ag ->
case ag of {
AMasc _ => Masc ;
AFem => Fem ;
ANeut => Neut
} ;
}