forked from GitHub/gf-core
24 lines
753 B
Plaintext
24 lines
753 B
Plaintext
--# -path=.:../romance:../common:../abstract
|
|
|
|
resource MakeStructuralFre = open CatFre, (P = ParadigmsFre), MorphoFre, Prelude in {
|
|
|
|
oper
|
|
mkConj : Str -> Str -> Number -> Conj = \x,y,n ->
|
|
{s1 = x ; s2 = y ; n = n ; lock_Conj = <>} ;
|
|
mkSubj : Str -> Subj = \x ->
|
|
{s = x ; m = Indic ; lock_Subj = <>} ;
|
|
mkSubjSubj : Str -> Subj = \x ->
|
|
{s = x ; m = Conjunct ; lock_Subj = <>} ;
|
|
|
|
mkIQuant : Str -> IQuant = \s ->
|
|
{s = \\_,_,c => prepCase c ++ s ; lock_IQuant = <>} ;
|
|
|
|
mkPredet : Str -> Str -> Prep -> Bool -> Predet = \m,f,c,p -> lin Predet {
|
|
s = \\g,k => prepCase k ++ case g.g of {Masc => m ; Fem => f} ;
|
|
c = c.c ;
|
|
a = if_then_else PAgr p (PAg Sg) PNoAg ---- e,g, "chacun de"; other possibilities?
|
|
} ;
|
|
|
|
|
|
}
|