1
0
forked from GitHub/gf-rgl

fixing issues with extend and add new rule for different word order

This commit is contained in:
Herbert Lange
2019-11-10 20:39:42 +01:00
parent 11a4d6ed12
commit 523b4841fc
2 changed files with 6 additions and 1 deletions

View File

@@ -50,4 +50,6 @@ concrete ExtraLat of ExtraLatAbs =
Abl_Prep = mkPrep "" Abl ; Abl_Prep = mkPrep "" Abl ;
inAbl_Prep = mkPrep "in" Abl ; inAbl_Prep = mkPrep "in" Abl ;
onAbl_Prep = mkPrep "in" Abl ; -- L... onAbl_Prep = mkPrep "in" Abl ; -- L...
UttSSVO s = { s = combineSentence s ! SPreS ! PreS ! CPreV ! SVO };
} }

View File

@@ -1,5 +1,5 @@
abstract ExtraLatAbs = abstract ExtraLatAbs =
Extra, Conjunction Conjunction
** { ** {
cat CS ; cat CS ;
fun fun
@@ -29,4 +29,7 @@ abstract ExtraLatAbs =
-- Preposition with alternate case -- Preposition with alternate case
inAbl_Prep : Prep ; inAbl_Prep : Prep ;
onAbl_Prep : Prep ; onAbl_Prep : Prep ;
-- Add all the word orders
UttSSVO : S -> Utt ;
} }