"Committed_by_peb"

This commit is contained in:
peb
2005-04-11 12:57:45 +00:00
parent 716e7986c5
commit a1546c25e7
81 changed files with 7080 additions and 181 deletions

View File

@@ -0,0 +1,24 @@
concrete TimeFlies of TimeFliesAbs = {
lin
s1 x y = {s = x.s ++ y.s};
vp1 x = {s = x.s};
vp2 x y = {s = x.s ++ y.s};
vp3 x y = {s = x.s ++ y.s};
np1 x = {s = x.s};
np2 x y = {s = x.s ++ y.s};
np3 x y = {s = x.s ++ y.s};
pp1 x y = {s = x.s ++ y.s};
flyV = {s = "flies"};
timeV = {s = "time"};
likeV = {s = "like"};
flyN = {s = "flies"};
timeN = {s = "time"};
arrowN = {s = "arrow"};
anD = {s = "an"};
timeD = {s = "time"};
likeP = {s = "like"};
}

View File

@@ -0,0 +1,27 @@
abstract TimeFliesAbs = {
cat
S; VP; NP; PP; V; N; D; P;
fun
s1 : NP -> VP -> S;
vp1 : V -> VP;
vp2 : V -> NP -> VP;
vp3 : VP -> PP -> VP;
np1 : N -> NP;
np2 : D -> N -> NP;
np3 : NP -> PP -> NP;
pp1 : P -> NP -> PP;
flyV : V;
timeV : V;
likeV : V;
flyN : N;
timeN : N;
arrowN : N;
anD : D;
timeD : D;
likeP : P;
}

View File

@@ -0,0 +1,2 @@
resource