concraft-pl 2.1.0 → 2.1.1
raw patch · 2 files changed
+6/−2 lines, 2 files
Files
concraft-pl.cabal view
@@ -1,5 +1,5 @@ name: concraft-pl-version: 2.1.0+version: 2.1.1 synopsis: Morphological tagger for Polish description: A morphological tagger for Polish based on the concraft library.
src/NLP/Concraft/Polish/Format/Plain.hs view
@@ -1,5 +1,6 @@ {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-}+{-# LANGUAGE CPP #-} -- | Simple format for morphosyntax representation which assumes that all tags -- have a textual representation with no spaces within and that one of the tags@@ -19,7 +20,10 @@ , showSent ) where --- import Prelude hiding ((<>))+#if MIN_VERSION_base(4,11,0)+import Prelude hiding ((<>))+#endif+ import Data.Monoid (Monoid, mappend, mconcat) import Data.Maybe (catMaybes) import Data.List (groupBy)