forked from GitHub/gf-rgl
Basque (#15)
A few additions and fixes in the Basque grammar, specifically * Verb morphology (missing forms & bug fixes) * Reflexives: VP and A2 "sees herself", "married to myself" work now properly. * Add Agr to AP * A few lexical changes + other small fixes * Make adjectives depend on agreement; Fix reflexives * fix typo and remove commented out line * small fixes and additions * fix linVP: use the same functions as mkClause * Add new forms to zaio and dio * Fix bug in chooseAuxPol * fix some bugs in synthetic verbs * Add some simple tests for the Basque grammar * Update README.md * formatting * Fix the RE in the grep * fixes/additions to tests * small fixes * change beautiful_A * use linCN in UttCN
This commit is contained in:
@@ -90,7 +90,9 @@ lin
|
||||
-- copula-preceded complements.
|
||||
|
||||
-- : VPSlash -> VP ;
|
||||
ReflVP vps = complSlash vps buru_NP ; ------ TODO
|
||||
ReflVP vps =
|
||||
let neureBurua : Agr => Str = \\a => reflPron ! a ++ "burua" ;
|
||||
in vps ** insertComp neureBurua <vps : VerbPhrase> ;
|
||||
|
||||
-- : Comp -> VP ;
|
||||
UseComp comp = insertComp comp.s (copulaVP comp.copula) ;
|
||||
@@ -138,7 +140,7 @@ lin
|
||||
-- Complement : Type = {s : Agr => Str ; copula : SyntVerb1 } ;
|
||||
|
||||
-- : AP -> Comp ;
|
||||
CompAP ap = { s = \\agr => ap.s ++ artDef ! getNum agr ! Abs ! ap.ph ;
|
||||
CompAP ap = { s = \\agr => ap.s ! agr ++ artDef ! getNum agr ! Abs ! ap.ph ;
|
||||
copula = Izan };
|
||||
|
||||
-- : CN -> Comp ;
|
||||
|
||||
Reference in New Issue
Block a user