added the GF version of Talbanken which was imported by Malin

This commit is contained in:
kr.angelov
2012-10-01 08:33:43 +00:00
parent 00490c07dd
commit 6daeecb6d9
7 changed files with 8446 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
module Structure where
data SentenceType = Q | Dir | Top
deriving (Show,Eq)
data NPType = Generic | Impers | Normal | Exist
deriving (Show,Eq)
data VPForm = Cop | Sup | VV | VA
| V | V2 | V2A | V2Pass
| Fut | FutKommer
| VS
deriving (Eq,Show)
data VForm a
= VInf | VPart | VSupin | VImp | VTense a
deriving (Show,Eq)
instance Functor VForm where
fmap f VInf = VInf
fmap f VPart = VPart
fmap f VSupin = VSupin
fmap f VImp = VImp
fmap f (VTense t) = VTense (f t)