1
0
forked from GitHub/gf-rgl
Files
gf-rgl/resource/danish/TypesDan.gf
2005-02-04 19:17:57 +00:00

27 lines
756 B
Plaintext

--1 Danish Word Classes and Morphological Parameters
--
-- This is a resource module for Italian morphology, defining the
-- morphological parameters and word classes of Italian.
-- The morphology is so far only
-- complete w.r.t. the syntax part of the resource grammar.
-- It does not include those parameters that are not needed for
-- analysing individual words: such parameters are defined in syntax modules.
instance TypesDan of TypesScand = {
param
Gender = Utr | Neutr ;
NounGender = NUtr | NNeutr ;
oper
genNoun = \s -> case s of {NUtr => Utr ; NNeutr => Neutr} ;
sexNoun _ = NoMasc ;
gen2nounGen = \s -> case s of {Utr => NUtr ; Neutr => NNeutr} ;
utrum = Utr ; neutrum = Neutr ;
param
AdjFormPos = Strong GenNum | Weak ;
}