final initial state for lecture 5

This commit is contained in:
Arianna Masciolini
2025-04-13 21:49:19 +02:00
parent c76f53ac81
commit 75871004b6

View File

@@ -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 ;
} }