resource ResSqi = ParamX-[Tense,Past,Pres] ** open Prelude in { oper Compl = {s : Str} ; param Species = Indef | Def ; param Case = Nom | Acc | Dat | Ablat ; param Gender = Masc | Fem ; param GenNum = GSg Gender | GPl ; oper Agr = {gn : GenNum; p : Person} ; oper Noun = {s: Species => Case => Number => Str; g: Gender} ; -- 3978 oper mkNoun : (_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_ : Str) -> Gender -> Noun = \f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14,f15,f16,g -> { s = table { Indef => table { Nom => table { Sg => f1 ; Pl => f2 } ; Acc => table { Sg => f3 ; Pl => f4 } ; Dat => table { Sg => f5 ; Pl => f6 } ; Ablat => table { Sg => f7 ; Pl => f8 } } ; Def => table { Nom => table { Sg => f9 ; Pl => f10 } ; Acc => table { Sg => f11 ; Pl => f12 } ; Dat => table { Sg => f13 ; Pl => f14 } ; Ablat => table { Sg => f15 ; Pl => f16 } } } ; g = g } ; oper Adj = {s: Case => Gender => Number => Str; clit: Bool} ; -- 462 oper mkAdj : (_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_ : Str) -> Bool -> Adj = \f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14,f15,f16,clit -> { s = table { Nom => table { Masc => table { Sg => f1 ; Pl => f2 } ; Fem => table { Sg => f3 ; Pl => f4 } } ; Acc => table { Masc => table { Sg => f5 ; Pl => f6 } ; Fem => table { Sg => f7 ; Pl => f8 } } ; Dat => table { Masc => table { Sg => f9 ; Pl => f10 } ; Fem => table { Sg => f11 ; Pl => f12 } } ; Ablat => table { Masc => table { Sg => f13 ; Pl => f14 } ; Fem => table { Sg => f15 ; Pl => f16 } } } ; clit = clit } ; param Tense = Pres | Past | Imperfect | Aorist ; oper Verb = {indicative: Tense => Number => Person => Str; imperative: Number => Str; participle: Str; pres_optative: Number => Person => Str; perf_optative: Number => Person => Str; pres_admirative: Number => Person => Str; imperf_admirative: Number => Person => Str} ; -- 758 oper mkVerb : (_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_ : Str) -> Verb = \f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14,f15,f16,f17,f18,f19,f20,f21,f22,f23,f24,f25,f26,f27,f28,f29,f30,f31,f32,f33,f34,f35,f36,f37,f38,f39,f40,f41,f42,f43,f44,f45,f46,f47,f48,f49,f50,f51 -> { indicative = table { Pres => table { Sg => table { P1 => f1 ; P2 => f2 ; P3 => f3 } ; Pl => table { P1 => f4 ; P2 => f5 ; P3 => f6 } } ; Past => table { Sg => table { P1 => f7 ; P2 => f8 ; P3 => f9 } ; Pl => table { P1 => f10 ; P2 => f11 ; P3 => f12 } } ; Aorist => table { Sg => table { P1 => f13 ; P2 => f14 ; P3 => f15 } ; Pl => table { P1 => f16 ; P2 => f17 ; P3 => f18 } } ; Imperfect => table { Sg => table { P1 => f19 ; P2 => f20 ; P3 => f21 } ; Pl => table { P1 => f22 ; P2 => f23 ; P3 => f24 } } } ; imperative = table { Sg => f25 ; Pl => f26 } ; participle = f27 ; pres_optative = table { Sg => table { P1 => f28 ; P2 => f29 ; P3 => f30 } ; Pl => table { P1 => f31 ; P2 => f32 ; P3 => f33 } } ; perf_optative = table { Sg => table { P1 => f34 ; P2 => f35 ; P3 => f36 } ; Pl => table { P1 => f37 ; P2 => f38 ; P3 => f39 } } ; pres_admirative = table { Sg => table { P1 => f40 ; P2 => f41 ; P3 => f42 } ; Pl => table { P1 => f43 ; P2 => f44 ; P3 => f45 } } ; imperf_admirative = table { Sg => table { P1 => f46 ; P2 => f47 ; P3 => f48 } ; Pl => table { P1 => f49 ; P2 => f50 ; P3 => f51 } } } ; oper link_clitic : Species => Case => Gender => Number => Str = table { Indef => table { Nom => table { Masc => table { Sg => "i" ; Pl => "të" } ; Fem => table { Sg => "e" ; Pl => "të" } } ; _ => \\_,_ => "të" } ; Def => table { Nom => table { Masc => table { Sg => "i" ; Pl => "e" } ; Fem => table { Sg => "e" ; Pl => "e" } } ; Acc => \\_,_ => "e" ; _ => table { Masc => \\_ => "të" ; Fem => table { Sg => "së" ; Pl => "të" } } } } ; oper genNum : Gender -> Number -> GenNum = \g,n -> case n of { Sg => GSg g ; Pl => GPl } ; agrgP3 : Gender -> Number -> Agr = \g,n -> {gn=genNum g n; p=P3} ; }