forked from GitHub/gf-core
Stemmed Finnish for N and A. Cuts down the number of forms stored in the lexicon to 30%, requiring more often -bind in linearization. Stored as alternative files in finnish/stemmed; perhaps to be functorized later.
This commit is contained in:
23
lib/src/finnish/stemmed/AdverbFin.gf
Normal file
23
lib/src/finnish/stemmed/AdverbFin.gf
Normal file
@@ -0,0 +1,23 @@
|
||||
concrete AdverbFin of Adverb = CatFin ** open ResFin, Prelude, StemFin in {
|
||||
|
||||
lin
|
||||
PositAdvAdj a = {s = a.s ! Posit ! SAAdv} ;
|
||||
ComparAdvAdj cadv a np = {
|
||||
s = cadv.s ++ a.s ! Posit ! SAAdv ++ cadv.p ++ np.s ! NPCase Nom
|
||||
} ;
|
||||
ComparAdvAdjS cadv a s = {
|
||||
s = cadv.s ++ a.s ! Posit ! SAAdv ++ cadv.p ++ s.s
|
||||
} ;
|
||||
|
||||
PrepNP prep np = {s = preOrPost prep.isPre prep.s (np.s ! prep.c)} ;
|
||||
|
||||
AdAdv = cc2 ;
|
||||
|
||||
PositAdAAdj a = {s = glue (a.s ! Posit ! SAN 1) "n"} ; -- älyttömän
|
||||
|
||||
SubjS = cc2 ;
|
||||
----b AdvSC s = s ;
|
||||
|
||||
AdnCAdv cadv = {s = cadv.s ++ "kuin"} ;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user