-- | -- Module : Conllu.DeprelTagset -- Copyright : © 2018 bruno cuconato -- License : LPGL-3 -- -- Maintainer : bruno cuconato -- Stability : experimental -- Portability : non-portable -- -- defines the CoNLL-U DEPREL tagset. this module is meant to be imported as -- -- @ -- import qualified Conllu.DeprelTagset as D -- @ module Conllu.DeprelTagset where data EP = ACL | ADVCL | ADVMOD | AMOD | APPOS | AUX | CASE | CC | CCOMP | CLF | COMPOUND | CONJ | COP | CSUBJ | DEP | DET | DISCOURSE | DISLOCATED | EXPL | FIXED | FLAT | GOESWITH | IOBJ | LIST | MARK | NMOD | NSUBJ | NUMMOD | OBJ | OBL | ORPHAN | PARATAXIS | PUNCT | REF -- ^ only allowed in DEPS | REPARANDUM | ROOT | VOCATIVE | XCOMP deriving (Enum, Eq, Read, Show)