forked from GitHub/comp-syntax-gu-mlt
final initial state for lecture 5
This commit is contained in:
@@ -1,20 +1,18 @@
|
|||||||
abstract Agreement = {
|
abstract Agreement = {
|
||||||
cat
|
cat
|
||||||
S ;
|
NP ;
|
||||||
CN ;
|
CN ;
|
||||||
V ;
|
|
||||||
N ;
|
N ;
|
||||||
A ;
|
A ;
|
||||||
Det ;
|
Det ;
|
||||||
|
|
||||||
fun
|
fun
|
||||||
PredVPS : CN -> V -> S ; -- the black cat runs
|
DetCN : Det -> CN -> NP ; -- the black cat
|
||||||
DetCN : Det -> N -> CN ; -- the black cat
|
|
||||||
AdjCN : A -> N -> CN ; -- black cat
|
AdjCN : A -> N -> CN ; -- black cat
|
||||||
UseN : N -> CN ; -- cat
|
UseN : N -> CN ; -- cat
|
||||||
|
|
||||||
cat_N : N ;
|
cat_N : N ;
|
||||||
black_A : A ;
|
black_A : A ;
|
||||||
run_V : V ;
|
|
||||||
the_Sg : Det ;
|
the_Sg : Det ;
|
||||||
the_Pl : Det ;
|
the_Pl : Det ;
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user