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 = {
cat
S ;
NP ;
CN ;
V ;
N ;
A ;
Det ;
fun
PredVPS : CN -> V -> S ; -- the black cat runs
DetCN : Det -> N -> CN ; -- the black cat
DetCN : Det -> CN -> NP ; -- the black cat
AdjCN : A -> N -> CN ; -- black cat
UseN : N -> CN ; -- cat
cat_N : N ;
black_A : A ;
run_V : V ;
the_Sg : Det ;
the_Pl : Det ;
}