1
0
forked from GitHub/gf-rgl

Added more verb forms, see NEW: in MorphoGer.gf.

This commit is contained in:
harald2
2004-09-30 07:55:41 +00:00
parent b4c6eb5647
commit 51b7f23cf8
4 changed files with 256 additions and 81 deletions

View File

@@ -75,7 +75,24 @@ param Degree = Pos | Comp | Sup ;
-- We have a reduced conjugation with only the present tense infinitive,
-- indicative, and imperative forms, and past participles.
param VForm = VInf | VInd Number Person | VImp Number | VPart AForm ;
param VForm = VInf |
VInd Number Person |
VImp Number |
VSubj Number Person |
VImpfInd Number Person |
VImpfSubj Number Person |
VPresPart AForm |
VPart AForm ;
{--
param Tense = Pres | Impf ;
VInf |
VInd Tense Number Person |
VSubj Tense Number Person |
VImp Number |
VPresPart AForm |
VPart AForm ;
--}
oper Verbum : Type = VForm => Str ;