1
0
forked from GitHub/gf-core

*** empty log message ***

This commit is contained in:
peb
2004-06-02 11:17:15 +00:00
parent 78f88812b8
commit ea15514395
7 changed files with 72 additions and 26 deletions

View File

@@ -2,14 +2,16 @@
abstract SimpleAbs = {
cat
S; VP; NP; V; N; D;
S; VP; NP; V; N; D; P; PP;
fun
cyclic : S -> S;
mkS : NP -> V -> S;
mkS : NP -> VP -> S;
mkVP : V -> NP -> VP;
mkNP1 : D -> N -> NP;
mkNP2 : N -> NP;
mkNP3 : NP -> PP -> NP;
mkPP : P -> NP -> PP;
robin : NP;
dog : N;
@@ -18,6 +20,7 @@ love : V;
hate : V;
one : D;
all : D;
inside : P;
}