mirror of
https://github.com/GrammaticalFramework/comp-syntax-gu-mlt.git
synced 2026-05-06 16:12:50 -06:00
last year's lecture material moved to directory 2025
This commit is contained in:
21
lectures/2025/lecture-05/Agreement.gf
Normal file
21
lectures/2025/lecture-05/Agreement.gf
Normal file
@@ -0,0 +1,21 @@
|
||||
abstract Agreement = {
|
||||
cat
|
||||
NP ;
|
||||
CN ;
|
||||
N ;
|
||||
A ;
|
||||
Det ;
|
||||
|
||||
fun
|
||||
DetCN : Det -> CN -> NP ; -- this black cat
|
||||
AdjCN : A -> N -> CN ; -- black cat
|
||||
UseN : N -> CN ; -- cat
|
||||
|
||||
cat_N : N ;
|
||||
house_N : N ;
|
||||
black_A : A ;
|
||||
big_A : A ;
|
||||
-- simplification of pronouns just to make English interesting
|
||||
this_Det : Det ;
|
||||
these_Det : Det ;
|
||||
}
|
||||
Reference in New Issue
Block a user