1
0
forked from GitHub/gf-rgl

Merge branch 'master' of github.com:GrammaticalFramework/gf-rgl

This commit is contained in:
Krasimir Angelov
2025-08-12 11:13:50 +02:00
4 changed files with 24 additions and 17 deletions

View File

@@ -513,7 +513,7 @@ param
-- IL2018-02: a whole lot of times we only need number and person, not gender
-- maybe switch to PersAgr at some point and halve the number of fields
oper PersAgr : PType = {n : Number ; p : Person} ;
oper Agr : PType = PersAgr ** {g : Gender} ;
oper Agr : PType = {n : Number ; p : Person ; g : Gender} ;
oper
pagr : Agr -> PersAgr = \agr -> { p = agr.p ; n = agr.n } ;

View File

@@ -502,13 +502,13 @@ oper
-- Agreements :
-- for relatives
-- for relatives
AAgr : PType = {g : Gender ; n : Number} ;
-- for agreement between subject and predicate
Agr : PType = AAgr ** {p : Person} ;
Agr : PType = {g : Gender ; n : Number ; p : Person} ;
-- clause building function :