started documentation of gfcc

This commit is contained in:
aarne
2006-10-02 15:40:15 +00:00
parent 0eb278da6d
commit 2fc45de8c2
4 changed files with 110 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
concrete Eng of Ex = {
lincat
S = {s : Str} ;
NP = {s : Str ; n : Num} ;
VP = {s : Num => Str} ;
param
Num = Sg | Pl ;
lin
Pred np vp = {s = np.s ++ vp.s ! np.n} ;
She = {s = "she" ; n = Sg} ;
They = {s = "they" ; n = Pl} ;
Sleep = {s = table {Sg => "sleeps" ; Pl => "sleep"}} ;
}