mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-07-03 04:28:33 -06:00
Made sutitable changes that were wanrranted due to
changes in linearization types for Verbs to include information
about particles and checks on source of complements i.e.
Verb : Type = {
s : Str;
pres:Str;
perf:Str;
--morphs: VFormMini => VerbMorphPos=> Str;
isPresBlank : Bool;
isPerfBlank : Bool;
isRegular: Bool
};
changed to:
Verb : Type = {
s : Str;
pres:Str;
perf:Str;
--morphs: VFormMini => VerbMorphPos=> Str;
isPresBlank : Bool;
isPerfBlank : Bool;
isRegular: Bool;
p : Str; -- some verbs have particles such as prepositions and adverbial that give the verb a meaning different from what would be automatically deduced
isRefl : Bool
};
This commit is contained in:
@@ -172,11 +172,11 @@ lin
|
||||
surface realisation comes from verb tense e.g nagyenzire implies I have alredy gone.
|
||||
-}
|
||||
already_Adv = mkAdv "" AgrNo; -- Already is realized as a verb form
|
||||
answer_V2S = mkV2S (mkV "garu" "kamu" "kiremu") noPrep;
|
||||
--answer_V2S = mkV2S (mkV "garu" "kamu" "kiremu") noPrep;
|
||||
apartment_N = mkN "apatimenti" "apatimenti" N_N;
|
||||
art_N = mkN "aati" "aati" N_N;
|
||||
ashes_N = mkN "eiju" "eiju" N_N;
|
||||
ask_V2Q = mkV2Q (mkV2 "bunza" "za" "rize") noPrep;
|
||||
--ask_V2Q = mkV2Q (mkV2 "bunza" "za" "rize") noPrep;
|
||||
back_N = mkN "omugongo" MU_MI;
|
||||
bank_N = mkN "banka" "banka" N_N;
|
||||
bark_N = mkN "ask for the Rukiga equivalent of bark" N_N; --TODO find actual word
|
||||
|
||||
Reference in New Issue
Block a user